Top "Node-redis" questions

node-redis is a complete Redis client for node.

count of keys matching a pattern

How can I find the count of all the keys that has a matching pattern. For example, there are two …

redis node-redis
Node_redis - how to remove a key?

Is there any way to remove/delete an entry by key, using Node_redis? I can't see any such option …

node.js redis node-redis
Scaling Socket.IO to multiple Node.js processes using cluster

Tearing my hair out with this one... has anyone managed to scale Socket.IO to multiple "worker" processes spawned by …

javascript node.js redis socket.io node-redis
How can I update a redis value without affecting the remaining TTL?

Is it possible to SET redis keys without removing their existing ttl? The only way I know of at the …

redis node-redis
How to delete everything in node redis?

I want to be able to delete all the keys. Is there a way to flush all in node redis? …

node.js redis node-redis
Make Node Redis get() Synchronous

i just started implementing redis with node. during an implementation of authentication method i need to check whether the token …

node.js redis node-redis
How to save javascript array as redis list

The following code save the whole array as single value in redis list. But I want to save array values …

javascript node.js redis node-redis
How to remove element from list in Redis by value?

How to remove element from list in Redis by value? For exmaple, I have: 127.0.0.1:6379> lrange POST:544 0 -1 1) "1" 2) "2" 3) "36" 127.0.0.1:6379> I …

redis node-redis
How to store array of objects in Redis?

I have an array of Objects that I want to store in Redis. I can break up the array part …

redis node-redis
Delete array of keys in redis using node-redis

I have arrays of keys like ["aaa","bbb","ccc"] so I want to delete all these keys from redis using …

node.js redis node-redis