Can someone let me know how to do guaranteed delivery using camel-redis? My use case is something like below:-
from("jetty:http://localhost:8888/hello").to("redis://...") Once the message is written to redis send a success response to http client, so that the client is not blocked waiting for response. Then in another route I want to process the message from redis like below and then deleting it from redis when the processing is successful from("redis://...").to(...)