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

Redis Node.js client

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

Passing an array with several items to mset will throw a Maximum call stack size exceeded exception on args.push

I have two VPS in same Private Network Service running on 10.0.0.1 Redis Server running on 10.0.0.3 (bind 0.0.0.0 in redis.conf) 1. Try connect using createClient to one Master then...

### Description I am struggling to find a way to combine the modern Redis v4 client with the jest test framework. This is my production code: ``` import redis from...

feature

### Description > This PR adds back a file that was accidentally deleted --- ### Checklist - [ ] Does `npm test` pass with this change (including linting)? - [...

### Description Issue https://github.com/redis/node-redis/issues/1955 I have added the implementation of the following command to the project [LATENCY HISTOGRAM](https://redis.io/docs/latest/commands/latency-histogram/). > Describe your pull request here --- ### Checklist - [x] Does...

### Description > Describe your pull request here --- ### Checklist - [ ] Does `npm test` pass with this change (including linting)? - [ ] Is the new or...

### Description > Describe your pull request here --- ### Checklist - [ ] Does `npm test` pass with this change (including linting)? - [ ] Is the new or...

### Description When passing an array to mset bigger than 103000 I get ``` const arr = new Array(103000).fill('1'); cacheRepo.multiSetObject(arr); ``` will throw a `Maximum call stack size exceeded` exception...

Bug

### Description What's the best practice to achieve atomic updates with node-redis client for multiple members from nodejs? https://github.com/redis/node-redis/blob/master/packages/client/lib/commands/ZINCRBY.ts Also, do you have a doc stating request/response examples for clients?

Documentation

in #2772 users noted that we are throwing a javascript exception as we are trying to apply .length to a null and hence that fails. we have 2 options. First,...