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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cxgo doesn't support thread local storage yet.
cxgo
We can emulate it by passing a *TLS object to all the functions that use it, and to all their callers, similar to how context.Context is passed in Go.
*TLS
context.Context
The text was updated successfully, but these errors were encountered:
Goroutine local storage: https://github.com/jtolio/gls Fast goroutine local storage:https://github.com/cosmos72/gls
Sorry, something went wrong.
No branches or pull requests
cxgo
doesn't support thread local storage yet.We can emulate it by passing a
*TLS
object to all the functions that use it, and to all their callers, similar to howcontext.Context
is passed in Go.The text was updated successfully, but these errors were encountered: