-
Here is the config:
`{ host: '172.20.14.223', port: '6379', password: 'xX1991@1' }`
Here is the error and debug log:
```
ioredis:redis status[172.20.14.223:6379]: connecting -> connect +4s
…
-
Hi, it would be great to have some kind of adapter API for third party Redis clients such as `ioredis`. This would eliminate the need to mix `ioredis` and `redis` usage in an existing codebase which u…
-
We already have pytests under tests/dragonfly.
I would like to add support for node-js tests. Specifically, start with ioredis tests.
Ideally, I would like to have the following deliverables:
…
-
We are trying to use apicache with an ioredis client, but we don't see any keys in redis. It seems that the check introduced with https://github.com/kwhitley/apicache/commit/375ccc7edf6b8a066a75907d88…
-
In the following I'm referring the state of [release/1.2.0](https://github.com/ONLYOFFICE/Kubernetes-Docs-Shards/tree/release/v1.2.0) branch with OO 8.2.0-rc25
I would like to use Redis Sentinel in…
-
### Description
I think we should include a default redis client, and accept a new option for the connection details that is passed directly to the redis client.
I think [node-redis](https://www…
-
Trying to utilize `ioredis` for the `redisClient` option (I depend on sentinels which is unsupported by `node-redis`
functions as expected with feathers@4 and feathers-sync@2:
```js
.configur…
-
### Context
We have another server connected to the same Redis as the game server. The other server is using `ioredis` npm package for the connection. And it will publish (i.e. "SOME_TOPIC") a chan…
-
i want using redis sentinel but i found snippets source code
```
if opts.client?.constructor?.name is "RedisClient"
@redis = opts.client
else
@redis = RedisInst.createClient(opts.port, o…
-
I'm trying to connect to a sentinel with:
```
const redisConfig = { host: '10.82.102.71', port: 31691 };
const redisClient = new Redis({
sentinels: [ redisConfig ],
name: "redis…