Node-redis support
krtk6160 opened this issue · 6 comments
krtk6160 commented
Is there any way to use this library with node-redis rather than ioredis?
swarthy commented
No, ioredis methods return promises, meanwhile node-redis has callback interface, so they are incompatible.
krtk6160 commented
No, ioredis methods return promises, meanwhile node-redis has callback interface, so they are incompatible.
We use async-redis to make node-redis work with promises. If I somehow bypass the check that checks the instance of the client, would it work?
swarthy commented
I dont think so
krtk6160 commented
Okay, thanks!
rawnsley commented
node-redis supports promises natively now and it is still the default recommended client for nodejs, so it's probably worth considering adding support.