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
how can I check if something is being executed as a pipeline?
I know that docs says this code is automatically handled as a pipeline because they are in the same "tick":
In case you are executing the commands once - an array of promises + Promies.all (or similar) is the most performant way as you don't create unnecessary objects/memory. If you are executing the same commands multiple times multi would perform better as the commands will be encoded once and reused for every executing.
Description
how can I check if something is being executed as a pipeline?
I know that docs says this code is automatically handled as a pipeline because they are in the same "tick":
but
is this being executed as a pipeline?
The text was updated successfully, but these errors were encountered: