Top "Node-redis" questions

node-redis is a complete Redis client for node.

How to store a binary object in redis using node?

I am trying to save a binary object in redis and then serve it back as an image. Here is …

node.js redis node-redis
How to pipeline in node.js to redis?

I have lot's of data to insert (SET \ INCR) to redis DB, so I'm looking for pipeline \ mass insertion through …

node.js redis pipeline node-redis
redis.lpush a number of items

In my node.js script I have an array of strings, and I want to LPUSH these strings into a …

node.js node-redis
How can I run redis on a single server on different ports?

I'm using kue which uses node_redis, but I'm also already using node_redis for my sessions, so I'd like …

redis node-redis kue
Node-Redis: ready check failed - NOAUTH Authentication required

I have a strange redis behavior: const redis = require('redis'); const { REDIS_URL: redisUrl, REDIS_PASSWORD: redisPassword } = process.env; const …

node.js redis node-redis
Node.js + Express + Redis, when to close connection?

I have a Node application that uses Express and node_redis. I'm following the approach outlined in the Learning Node …

node.js express node-redis
Node JS Redis Client Connection Retry

Currently I'm using https://github.com/mranney/node_redis as my node redis client. client.retry_delay is set to 250…

node.js redis node-redis reconnect
Are all Redis Commands Asynchronous?

I am new to Redis and Node.JS and have been attempting to use the two together. However I am …

javascript node.js asynchronous redis node-redis
Redis WATCH MULTI EXEC by one client

I am using NodeJS + Express + Redis on RedisOnGo + node_redis as a client. I expect a lot of concurrency, so …

javascript node.js redis node-redis
node_redis get zrange withscores

Does anybody know how can I get members with scores by node redis? I tried something like this: client.ZRANGE(…

node.js redis node-redis