Explore >> Select a destination


You are here

pboyd.io
| | antonz.org
3.2 parsecs away

Travel
| | Limiting the concurrency and waiting for the peers.
| | www.minaandrawos.com
4.1 parsecs away

Travel
| | Concurrency in Golang is one of the most powerful features in thelanguage. Numerous folks covered the topic,today is my turn.
| | rakhim.org
3.8 parsecs away

Travel
| | [AI summary] Concurrency Is Not Parallellism is a talk by Rob Pike that explores the distinction between concurrency and parallelism. The talk emphasizes that concurrency is about structuring systems to handle many things at once, while parallelism is about executing multiple tasks simultaneously. Concurrency provides the structure that can enable parallelism, but the goal is good structure, not necessarily parallel execution. The talk uses analogies like the gopher example to illustrate these concepts and highlights the importance of concurrent design for building scalable and correct systems. It also discusses Go's concurrency features, such as goroutines and channels, and how they simplify concurrent programming. The talk concludes that concurrency is pow...
| | aarol.dev
13.7 parsecs away

Travel
| Compared to Javascript, Python and other single threaded languages, Go takes a very different approach to I was having difficulties understanding how concurrent ...