1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-29 20:21:50 +02:00

added content and resources to golang node (context) (#1954)

* added content and resources to golang node

* Update content/roadmaps/109-golang/content/101-go-advanced/104-context.md

Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
This commit is contained in:
Hamees Sayed
2022-10-05 05:21:38 +05:30
committed by GitHub
parent b84aac0030
commit fd9d08e758

View File

@@ -1 +1,8 @@
# Context
# Context
The `context` package provides a standard way to solve the problem of managing state during a request. The package satisfies the need for request scoped data and provides a standardized way to handle: Deadlines, Cancellation Signals, etc.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink badgeText='Watch' href='https://youtu.be/h2RdcrMLQAo'>Understanding Contexts in Go</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.digitalocean.com/community/tutorials/how-to-use-contexts-in-go'>DigitalOcean: How to Use Contests in Go</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://gobyexample.com/context'>Go by Example: Context</BadgeLink>