rsmq
rsmq copied to clipboard
Redis Simple Message Queue
hey guys. I want to access to first message of queue (get front of queue) without deleting message. Thank you for guiding me.
Hi there, I have been using your tiny and excellent framework at work. To aide my understanding of it, I have implemented a package for the go language. - [x]...
From the documentation: https://github.com/smrchy/rsmq#quitcallback > Disconnect the redis client. This is only useful if you are using rsmq within a script and want node to be able to exit. Our...
Whenever I try to create a queue I get the error ReplyError: ERR unknown command 'time' ``` ReplyError: ERR unknown command 'time' at parseError (C:\Users\User\Documents\Uche Ubani Dev\example-message-queue\node_modules\redis\node_modules\redis-parser\lib\parser.js:193:12) at parseType (C:\Users\User\Documents\Uche...
Hi! I've created a new Python implementation of RSMQ, using an async Redis library, which enables the entire package to be async as well. You can find it here: https://github.com/federicotdn/aiorsmq...
Hi, Found a vulnerability issue on the redis package as a dependency package of rsmq (rsmq-promise > rsmq > redis) https://www.npmjs.com/advisories/1662 Are there any plans to update this library? Thanks.
Upgrade redis to resolve vulnerability issue. Please see: https://www.npmjs.com/advisories/1662
Currently, the Latest version 0.4.3 RSMQ Python does not allow Redis Password as an argument. Could you please fix it or Kindly let me know where I can Do it?
Code ```js var [err, id] = await __.to( rsmq.sendMessageAsync({ qname: 'test', message: 'test' }) ) console.log('sendMessageAsync', err ? err.message : '-', id) var [err, message] = await __.to( rsmq.receiveMessageAsync({ qname:...
Is it possible to have transaction support for the following case? I got other write operation that want to put in the same transaction with the publish message. Is that...