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

Does auto-pipelining guarantee the order of execution?

Open ikigai-chiawen-c opened this issue 6 months ago • 3 comments

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'),
])

ikigai-chiawen-c avatar Apr 11 '25 05:04 ikigai-chiawen-c