node-redis-pubsub icon indicating copy to clipboard operation
node-redis-pubsub copied to clipboard

Simple pubsub for node using Redis

Results 15 node-redis-pubsub issues
Sort by recently updated
recently updated
newest added

fix too early unsubscription from channel pattern when there are multiple listeners on the same channel pattern.

Is it possible to send a buffer as the message?

I want to use node-redis-pubsub in conjunction with websockets. Is it possible that the listeners expire after a defined period? My usecase: At the websocket server on each socket connection...

Hi, Is there a connection pooling support for the pubsub ? I tried to use generic pool of redis clients and it does not seem to work.. Want to know...

Hi, Thank you for the awesome project. Currently your code allows for us to provide an error handler if the clients cannot connect to redis. The code [here](https://github.com/louischatriot/node-redis-pubsub/blob/a4cd4c8e6a565cb52f4c4a578d126ff00b27ae7b/lib/node-redis-pubsub.js#L79) provides this...

Hi there what about connecting to 10 cluster servers, there is any way to do it?

Add `.off` and `.unsubscribe` Given ``` function handler(){} ``` We currently can subscribe a handler to a channel ``` nsp.on('channel', handler, function(){ }); ``` This PR adds the ability to...

with the current version, library test for the json messages and if its not a valid json it simply throws the error. However if we want to subscribe to events...

Hello! So I was fooling around with REDIS and node-redis-pubsub. I started two redis-cli instances locally and ran two node scripts like the above: ```javascript var NRP = require('node-redis-pubsub'); var...