rsmq
rsmq copied to clipboard
Redis Simple Message Queue
I am attempting to connect to AWS Redis Cluster, and it simply doesn't seem to work. On fullReady I am able to get the message that the queue is being...
I have a cronjob listing all queues and processing them all. But I need to only list non-empty queue to limit the process to relevant queues. How can I do...
RSMQ should be able to ensure service availability by using a Sentinel managed cluster of Redis nodes.
Allow choosing an ID rather than letting the library choose one. Useful when you already want to reference an out-of-band object with an UUID.
Without this fix, this just does not work. `this.rsmq = new RedisSMQ({ options: { url: connectionString } });` The documentation is stating: > options (Object): optional (Default: {}) The Redis...
Since [michsindelar/PhpRSMQ](https://github.com/michsindelar/PhpRSMQ) not active, PHP implementation can be replaced with [eislambey/php-rsmq](https://github.com/eislambey/php-rsmq). I can send a PR if suitable for you.
I tried to visit your homepage at https://smrchy.github.io/rsmq/ but it doesn't work. It seems like there are jQuery and Flatdoc dependencies missing which causes the site not to work.
Here is my code > await rsmq.createQueueAsync({ qname: config.queue_name, maxsize: -1 }); I passed maxsize as -1 but it still considers as 65536
This PR increases the precision on `vt` and `delay` to milliseconds rather than seconds without changing the external API. This PR allows more precise `hiddenmsgs` information in queue attributes by...
Hi @smrchy, This commit is a minimally invasive first-pass attempt at adding ioRedis support. The main difference between ioredis and node-redis that affects rsmq is the difference in the return...