You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@camel.apache.org by Debraj Manna <su...@gmail.com> on 2016/10/20 07:59:56 UTC

Camel guaranteed delivery using redis

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(...)