Golang Context
What is golang context
Context is used to pass request-scope values, and control timeout, deadline and cancel of sub goroutines in a request.
Common use cases.
Pass value through context.
Set timeout or deadline to context
Cancel context, and stop r...
codeforfun.hashnode.dev3 min read