/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

aarol.dev
| | golangbot.com
3.1 parsecs away

Travel
| | A Mutex is used to provide a locking mechanism to ensure that only one Goroutine is running the critical section of code at any point in time. Mutexes help avoid race conditions.
| | antonz.org
2.0 parsecs away

Travel
| | Limiting the concurrency and waiting for the peers.
| | hjr265.me
3.0 parsecs away

Travel
| | Concurrency is one of the central features of Go. And, to build concurrent programs in Go, you need goroutines. A goroutine is like a thread, but lighter. Much lighter. And, like any other built-in feature of Go, using it is dead simple: 1 2 3 4 5 6 7 package main func main() { go func() { println("Hello World") // Print "Hello World" from a different goroutine. }() } Wait. That didn't print anything.
| | kristoff.it
18.1 parsecs away

Travel
|