I am using Redis database for building a message queue. I am trying to push the messages to the queuse using jedis in java and trying to consume the messages using rsmq-worker in node.js. However, the messages produced are not reveived at the node.js side. Is this possible?
Asked
Active
Viewed 529 times
1 Answers
1
The languages used to read and write from Redis won't make a difference. Connect to Redis and make sure that jedis is pushing the messages as expected, and add some test data and check node.js is able to read it.

Chris Tanner
- 1,624
- 1
- 12
- 20