AlexP
Results
2
comments of
AlexP
FWIW, I've been using `redlock-universal `as an alternative. It handles both `node-redis` and `ioredis`, and has auto-extension built in which saves a lot of headache with long-running tasks. ``` js...
For anyone still facing this issue - the root cause is that node-redlock was built for ioredis's API (`client.evalsha`), while node-redis v4+ uses camelCase (`client.evalSha`). The monkey-patching workaround has limitations...