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

### Description When calling `ft.search` and passing `PARAMS: {}` to the node-redis options it adds `PARAMS 0` to the query which its invalid, it should not add anything to the...

Bug

### Description Code snippet for connecting the redis is below. ``` this.client = redis.createClient({ socket: { host: redisHost, port: REDISPORT}, }); this.client.connect(); this.client.on("error", (err) => log.error("Error in redis :", err));...

Bug

### Description Addresses this ticket: https://redislabs.atlassian.net/browse/DOC-2737 > Describe your pull request here --- ### Checklist - [ ] Does `npm test` pass with this change (including linting)? - [ ]...

We are facing a `READONLY You can't write against a read only replica` error (followed by a `Socket closed unexpectedly` error) when we want to write on our AWS ElastiCache...

Bug

[Redis docs for the EXPIRE command](https://redis.io/commands/expire/) state that it returns an "Integer reply" in node-redis the response is transformed into a boolean. ``` // NOTE: r - instance of redis...

Bug
Evaluating
Breaking Change

### Description Hi, I have encountered an issue where I try to use JSON.set for an array of objects, however, it shows a type error when it tries so set...

Bug

### Description Code is written in NestJS If I repeatedly stop and start the redis server several times while the application is running, the redis client goes offline and cannot...

Bug

### Motivation Importing redis noticeable affects startup time in node and typechecking performance in vs code. Root cause are all the small command-files that need to be loaded by node...

### Motivation [Since RediSearch 2.8, it's possible to do more advanced GEO querying with GEOSHAPE fields.](https://docs.redis.com/latest/stack/release-notes/redisearch/redisearch-2.8-release-notes/#whats-new-in-284) On the client side, we should provide support for Index creation and Querying. APIs...

feature

### Description In your main README, the [Transactions (Multi/Exec)](https://github.com/redis/node-redis/tree/master#transactions-multiexec) gives an example _without_ calling `.watch()`. Below the example, there is a little blurb that you can first call `.watch()`, in...

Documentation