redis-smq icon indicating copy to clipboard operation
redis-smq copied to clipboard

A simple high-performance Redis message queue for Node.js.

Results 8 redis-smq issues
Sort by recently updated
recently updated
newest added

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

enhancement
feature request

Do you plan on implementing any kind of topic based routing? much like a message broker? Awesome library BTW.

feature request

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...

feature request

@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...

question / feature request

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...

enhancement
help wanted

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...