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

Simple example using Cypher to CREATE a graph with relationships and then MATCH on that graph ### Description Simple starting documentation for redis/@graph Took a while to figure out how...

**Environment:** - **Node.js Version**: 16.13.2 - **Redis Server Version**: 6.2.6 - **Node Redis Version**: [email protected] - **Platform**: MacOS 11.6.1 Abort signals appear to result in sockets being left open. Consider...

Bug

I have a code like this, ``` function generateJsonPaths(ids) { const idsString = _.map(ids, id => `"${id}"`).join(',') return `$.orgs.[${idsString}]` } const redisMulti = redisClient.multi() const path = generateJsonPaths(ids) _.each(hashes, hash...

Bug

Redis typescript build is throwing compilation error Steps to reproduce: 1. create a simple ts file with any simple redis function 2. add redis dependency 3. execute tsc command and...

Bug

**Environment:** - **Node.js Version**: v16.11.1 - **Redis Server Version**: Any - **Node Redis Version**: 4.3.1 - **Platform**: Ubuntu 20.04.3, Windows 10

Bug

https://github.com/redis/node-redis/blob/def9f161e5d63657b5793e66d0db451020781d17/packages/search/lib/commands/SEARCH.ts#L30 options.RETURN can get array of properties , How to get it work with return AS , for example : `FT.SEARCH 'testIdx' '@brand:(lg)' RETURN 4 sku $._supplier.name AS supplier_name` `Client.ft.search(`testIdx`...

Pending Author Input
Question

``` const Redis = require("redis"); const cluster = Redis.createCluster({ rootNodes: [ { url: 'redis://localhost:7000', }] }); cluster.on('ready', () => console.log('Redis Cluster ready')); cluster.on('connect', () => console.log('Redis Cluster connect')); cluster.on("reconnecting", ()...

feature
Good First Issue

Hi, I use this code to search products: `let products = await redisClient.ft.search(index_name , '@brand:(lg)' , {RETURN: ['$.product_type' , 'priority'] , LIMIT:{from: 0 , size:5}}); ` The result is: ![image](https://user-images.githubusercontent.com/8736967/187687690-d84e3cdb-cf8c-452e-8c7e-ee768dc4b9bd.png)...

feature
Question
Evaluating

### Description The basic example just hangs. It was missing the disconnect. --- ### Checklist - [ ] Does `npm test` pass with this change (including linting)? - [ ]...

To support RedisBloom 2.4.0, we need to support the compression argument on TDIGEST.CREATE. This entereed RedisBloom as part of https://github.com/RedisBloom/RedisBloom/pull/520