You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when all the promises in the given iterable fulfill. The fulfillment value is an array of fulfillment values, in the order of the promises passed, regardless of completion order. If the iterable passed is non-empty but contains no pending promises, the returned promise is still asynchronously (instead of synchronously) fulfilled.
Thanks I know it. I am asking if the Redis library always send commands in the order of SET a 1 -> GET a, since the function call redis.set('a', 1) is invoked before redis.get('a'), when auto-pipeline is enabled.
Description
It isn't clear in documentation if the commands in an auto-pipeline are guaranteed to execute in order:
The text was updated successfully, but these errors were encountered: