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

Redis Node.js client

Results 266 node-redis issues
Sort by recently updated
recently updated
newest added

I get this error and I don't understand why: How do I get more details about this: ``` /mnt/c/dev/client-adapter/node_modules/redis/dist/lib/socket.js:157 socket.setTimeout(__classPrivateFieldGet(this, _RedisSocket_options, "f").connectTimeout, () => socket.destroy(new errors_1.ConnectionTimeoutError())); ^ ConnectionTimeoutError: Connection timeout...

Pending Author Input
Bug

I am new to Redis and Node-redis. I have setup local redis using bitnami image. Below is a part of docker-compose.yml ``` redis: image: bitnami/redis-cluster:7.0 restart: always ports: - '6379:6379'...

Bug

**Environment:** - **Node.js Version**: v14.19.3 - **Redis Server Version**: redis-3.2.12-2.el7.x86_64 - **Node Redis Version**: ^2.8.0 - **Platform**: Centos 7 The code at issue runs every 5 minutes and about 7%...

Bug

Hi! I'm working with a Redis Cluster with four masters and four slaves distributed in two different hosts, with the following configuration: **Host 1**: Master in port 6000 (nodes 0...

Bug

When a command is aborted with a signal its removed from the `waitingToBeSent` queue: https://github.com/redis/node-redis/blob/0752f143a6dbc83df0a5db987907e8794aabe9db/packages/client/lib/client/commands-queue.ts#L153-L156 But then when a reply comes in, there's no handlers on the queue anymore so...

Bug

Hello, I can't find this method, how can I change the function? Zrevrangebyscore--Zrevrangebyscore--Zrevrangebyscore--Zrevrangebyscore

feature

How I can make exclusive range with `zrange`? I try ``` await redis.zRange('ticks:' + pair, '(123', end) ``` but it end with error In file /commands/zrange.js I see that argument...

Pending Author Input

When calling hGetAll with a key that does not exist, in version 3.x, it would return a falsey value (null). In 4.1.0, it returns an empty object, which is truthy....

Evaluating

#97's thread indicates that WITHSCORES is implemented as of v4. However upon inspection of the code, it's been commented out. Could I get an explanation as to why it's been...

Bug

We are using Redis cache in our Node JS Typescript Lambda API. Also we using webpack to run or build the API. While running the API we get Webpack compilation...

Bug