We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Hey, I’m wondering if the following example guarantees execution order with node-redis async API:
await cluster.set('hello', 'cluster'); const value = await cluster.get('hello');
Does SET always execute before GET, even though SET wasn’t explicitly awaited?
Thanks!
The text was updated successfully, but these errors were encountered:
Your code awaits the set though, so it will always execute before the get
Sorry, something went wrong.
oops, I meant:
cluster.set('hello', 'cluster'); const value = await cluster.get('hello');
No branches or pull requests
Hey,
I’m wondering if the following example guarantees execution order with node-redis async API:
Does SET always execute before GET, even though SET wasn’t explicitly awaited?
Thanks!
The text was updated successfully, but these errors were encountered: