The Context Package
Understanding it
The context package is used to pass information through a request scope and signals like cancel and deadline.
My main use is when an HTTP request is made and I need a way to cancel the entire process if the user cancels the request.
...
hashnode.lucaskatayama.com2 min read
Raj
Thanks Lucas for your amazing explanation on context ! I had a doubt that what's difference between context we use from context package and r.context in http request inside handler function.