redis-smq
redis-smq copied to clipboard
A simple high-performance Redis message queue for Node.js.
Actually all `ioredis` configuration parameters are supported. But there is no way to provide and use a cluster configuration. See https://github.com/luin/ioredis#cluster
Do you plan on implementing any kind of topic based routing? much like a message broker? Awesome library BTW.
hi there, Is it possible to limit the size of the queue. For example, I'm only interested in last 10 messages of a queue. The queue will hold 10 messages...
@weyoss Thanks for nicely crafted library. I have done some performance benchmark to compare redis-smq with [bull](https://github.com/OptimalBits/bull) on my Dell XPS. `Machine 16GB RAM, Hexa Core` No doubt, redis-smq is...
I am using a managed redis instance with Digitial ocean. When I used redis-smq with node redis, the connection often crashes the server. I dont seem to have a good...
Hey @weyoss Amazing work with the library. Based on the docs redis-smq currently supports only ioredis and node-redis clients. Is it possible to extend support for [iovalkey](https://github.com/valkey-io/iovalkey) as this is...
When using the latest the version 8.0.0-rc.25 it seems like typescript is unable to resolve `run` function on producer instance. ```typescript const producer = new Producer() producer.run //
I am looking for clarification of the following function calls, in terms of their behaviour: https://github.com/weyoss/redis-smq/blob/master/docs/api/classes/ProducibleMessage.md#setttl https://github.com/weyoss/redis-smq/blob/master/docs/api/classes/ProducibleMessage.md#setconsumetimeout I have a queue on which I put messages onto at specific intervals...