Replies: 1 comment 1 reply
-
All go-redis API is synchronous. You can use channels/goroutines if you need async execution. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For example, in the sample code in project's README.md, we have
Looks like
Set
is synchronous becauseerr
must be assigned with a value for the next line of code to run.Is there an asynchronous way to
Set
? I'm asking because I am working with a use case whereBeta Was this translation helpful? Give feedback.
All reactions