ioredis
ioredis copied to clipboard
π A robust, performance-focused, and full-featured Redis client for Node.js.
We are receiving this error on startup in our latest deploy (we are only seeing this in production). ```js import IORedis from "ioredis"; const REDIS_URL = process.env.CHECKOUTS_REDIS_URL || "redis://127.0.0.1:6381"; export...
```text ioredis: 4.27.3 ``` I config remote aliyun redis server address in config.local.ts, but it's not work. ```typescript // /src/config/config.local.ts config.redis = { port: 6379, // Redis port host: 'xxx.redis.rds.aliyuncs.com',...
When using commandTimeout with blocking commands, the blocked command (blpop for example), will also terminate with the timeout if it happens before the command is successful. I think this should...
https://github.com/luin/ioredis#tls-profiles but `tls` types doesn't include `string` type. currently workaround is `tls: "RedisCloudFixed" as any,`
Hey there, while migrating to 5.x I noticed that our pipelines have ts errors now. Consider this example: ```typescript cacheAndExpireValue(value: string): Promise { return cluster .pipeline() .getset("someKey", value) .expire("someKey", 42)...
When connecting to Redis via TLS connection, calling quit() causes an unhandled error. No issue for non-TLS mode. node.js : v16.15.0 ioredis version: 4.28.5, 4.28.0 tested with Redis.com and DigitalOcean...
Hi, Sure Im missing something and you can help me on knowing what Im missing here, but from my understanding the REDIS protocol is quite simple and by default does...
There is a memory leak when using `redis.duplicate()` on a `Cluster`. Take the following code example: ```javascript var memwatch = require("@airbnb/node-memwatch"); var ioredis = require("ioredis"); async function main() { //...
Hey guys, did anyone have some issue like that to connect in the AWS ElasticCache in the ECS Container? [ioredis] Unhandled error event: Error: getaddrinfo ENOTFOUND cursobeta-dev-elasticache-redis.ilg7lv.ng.0001.use1.cache.amazonaws.com Looks like permision,...
### **This is a Feature request.** We like to use the IOredis to connect to the RedisJson and looking for a ESM style import to be able to use in...