Open
Description
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 and ioredis are the two most popular ones. node-redis has more github stars while ioredis has more npm downloads. I'm leaning a bit towards ioredis since it has a smaller file size, although node-redis has the advantage of only accepting 0 or 1 arguments to it's constructor, whereas ioredis accepts 0-3. (We could accept an array for the 2+ arg versions.)
We should still keep the sendCommand
option around for backwards compatibility and advanced usage. It should probably throw an error if both sendCommand
and our new option are set at the same time.
Why
- Simplify usage
- Enable clustering support - RedisStore: args.length: Cannot read properties of undefined (reading length). #207
Alternatives
Not changing anything