Go: Managing Time and Timing in Concurrent Applications
In this chapter, we'll explore various techniques for managing time in concurrent Go programs.
Throttling
Suppose we have work that needs to be done in large quantities:
func work() {
// Something very important, but not very fast.
time.Slee...
blog.fshtab.com10 min read