node-redis
node-redis copied to clipboard
Redis Node.js client
### Description I faced some difficulties while working on sets and later found the value for set should be string. So i just add the example for how to use...
### Description Hi I got this error in VS code for ft.aggregate , it warns me of an error but when i run the code it works without errors ...
### Motivation Presently node-redis doesn't work with edge functions. I keep getting an error when trying to use it on Cloudflare Workers. In response to another issue, @leibale had [written](https://github.com/redis/node-redis/issues/2438#issuecomment-1468286130)...
### Description Fix #2458 --- ### Checklist - [x] Does `npm test` pass with this change (including linting)? - [x] Is the new or changed code fully tested? - [x]...
Getting Error for Heroku Redis Addon Connection After Upgrading Redis NPM Version to Latest (4.6.7)
### Description I am maintaining express.js app on Heroku. Because Heroku doesn't support Heroku Redis 4 & 5 soon, I have upgraded the Heroku Redis addon to 7.0, and also...
### Description We don't currently have an example for search that uses the `LIMIT` clause on the `FT.SEARCH` command. Amend https://github.com/redis/node-redis/blob/master/examples/search-hashes.js to demonstrate this.
Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap) from 1.2.3 to 1.2.4. Release notes Sourced from word-wrap's releases. 1.2.4 What's Changed Remove default indent by @mohd-akram in jonschlinkert/word-wrap#24 🔒fix: CVE 2023 26115 (2) by @OlafConijn in...
### Description The following code works as expected storing multiple documents at the index specified: await RedisVectorStore.fromDocuments( docs, new OpenAIEmbeddings(), { redisClient: client, indexName: "docs", } ); However, If I...
### Description ``` const redis = require("redis"); const { setup, RedisStore } = require("axios-cache-adapter"); const client = redis.createClient({ url: 'REDIS_URL' }) const store = new RedisStore(client) // => TypeError: First...
### Description In my code I want a particular to key to expire at the end of the day. I do this as follows: `const todayEnd = new Date().setHours(23, 59,...