node-redis
node-redis copied to clipboard
Does auto-pipelining guarantee the order of execution?
Description
It isn't clear in documentation if the commands in an auto-pipeline are guaranteed to execute in order:
await Promise.all([
redis.set('a', 1),
redis.get('a'),
])