bukakoding.hashnode.devSimple Guide to Managing Shared Resources with Go MutexHas anyone used Go Mutex in their project? When we should use Mutex? How do you use Mutex properly and safely? Mutex stands for 'mutual exclusion'. It ensures that only one goroutine can access a shared resource at any given time, preventing race con...Nov 27, 2024·2 min read
bukakoding.hashnode.devEnhance Your Coding Skills with Go's Context FeatureWhat is Go’s Context? Why do we have to use context? Do you usually use context in your golang project? One of the underrated features in Golang is Context. Context can be used for managing deadlines, timeouts, and cancellation of your function call....Nov 24, 2024·1 min read