Re: can Redis BLPOP (and etc) be used in a consumer URI?

2017-03-29 Thread Mark Nuttall
Thanks. That is what I saw too. I dug through the code and I didnt see any thing else supported. I was hoping for a sanity check. :) Anyway, since Redis pub/sub seems to add no value over embedded activemq or SEDA, and actually means an external dependency, I am not going to use Redis for queues.

Re: can Redis BLPOP (and etc) be used in a consumer URI?

2017-03-28 Thread Tomohisa Igarashi
Hi, I don't know much about Redis though, it seems the PSUBSCRIBE and SUBSCRIBE are the only two supported for consumer. https://github.com/apache/camel/blob/master/components/camel-spring-redis/src/main/java/org/apache/camel/component/redis/RedisConsumer.java#L54 You may want to file a JIRA fo

can Redis BLPOP (and etc) be used in a consumer URI?

2017-03-28 Thread Mark Nuttall
I am looking at the documentation and examples and have been testing with the Redis component. It seems that the only command that will work in a consumer URI is SUBSCRIBE and PSUBSCRIBE . It seems that only works with PUBLISH. Pub/Sub in REDIS is not persistent. I need something that is. If i pu