rsmq icon indicating copy to clipboard operation
rsmq copied to clipboard

Redis Simple Message Queue

Results 27 rsmq issues
Sort by recently updated
recently updated
newest added

An option on createQueue and setQueueAttributes methods to set the time a message on a queue will be available to be received.

enhancement

Allow users to make fully custom keys solved #78

Just adding the NOAUTH Authentication support to Redis connection when creating new object e.g. ``` new RedisSMQ( { host: process.env.REDIS_HOST, port: process.env.REDIS_PORT, no_auth: process.env.REDIS_NO_AUTH_PW, ns: "rsmq" } ) ```

i want using redis sentinel but i found snippets source code ``` if opts.client?.constructor?.name is "RedisClient" @redis = opts.client else @redis = RedisInst.createClient(opts.port, opts.host, opts.options) ``` node-redis-sentinel/ ioredis `constructor.name` is...

enhancement

``` const RedisSMQ = require("rsmq") const Redis = require("ioredis") const redis = new Redis("redis://:[email protected]:6379/0") const rsmq = new RedisSMQ({ client: redis }) rsmq.sendMessage({ qname: queue_name, message: JSON.stringify(message) }, function (err,...

A protocol-document to implement rsmq within other languages would be quiet useful.

enhancement

Hello, The last commit for this project was in June 2021. Is the project still being maintained?