async-redis icon indicating copy to clipboard operation
async-redis copied to clipboard

First class async & promise support for redis.

Results 14 async-redis issues
Sort by recently updated
recently updated
newest added

Could we import the DefinitelyTyped types here? (https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/async-redis/index.d.ts) **_OR_** Remove the published types entirely and rely on DefinitelyTyped? The mismatch is causing issues for me. Thank you!

Hi! Thanks for a great module! :blush: Since version 2.0.0 async-redis is no longer working with typescript. it seems like tsc is loading src/index.d.ts file instead of src/index.js. Reproducible steps:...

Hello, I try to do something like: ``` await client.set('key', 'value', { EX: 10 }); ``` But getting ```err :>> Error: node_redis: The SET command contains a invalid argument type....

Bumps [ansi-regex](https://github.com/chalk/ansi-regex) from 3.0.0 to 3.0.1. Commits f545bdb 3.0.1 c57d4c2 fix a few old XO issues for backport 419250f Fix potential ReDoS (#37) See full diff in compare view [![Dependabot...

dependencies

Hi, First of all, thanks for this library. It is much appreciated. Good work. :) I ran into an issue yesterday and I managed to narrow it down to the...

![screenshot](https://user-images.githubusercontent.com/3178666/143783774-042ee1be-d54b-4c8f-a27d-2448afce88b1.png)

Node: v12.18.2 redis: 5.0.5 (docker image) async-redis: 2.0.0 Error occur as " AbortError: BLPOP can't be processed. The connection is already closed. " This is ample code where an error...

Just abstract example: ```js (async f1() { const client1 = asyncRedis.createClient(); await client1.blpop("some", 0); })() (async f2() { const client2 = asyncRedis.createClient(); await client2.lpush("some", 42); })() ``` f2's lpush will...

HI! in order to have a more complete API in replacement of `redis` I'd suggest to add the redis.print method. https://github.com/NodeRedis/node-redis If it's need, I can create a PR with...

Scenario: 1. (client 1) Run `watch` on a key 2. (client 1) Set timeout of 10 sec for starting `multi` + modifying the key 3. (client 2) Modify key 4....