/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

www.minaandrawos.com
| | ncona.com
4.6 parsecs away

Travel
| | In this article we are going to learn what is concurrency in computer systems. To understand it better, we'll see what are the problems that occur when there is concurrency and what are some ways to prevent those problems. What is concurrency? Concurrency referes to the ability of a computer system to do different things at the same time. We see concurrency in action in our computers when there are multiple programs executing at the same time. We can be playing some music in our computer and at the same ...
| | rakhim.org
3.3 parsecs away

Travel
| | [AI summary] This article summarizes Rob Pike's talk on the difference between concurrency and parallelism, using Go's Goroutines and channels to demonstrate how to design safe, scalable systems that can be parallelized.
| | hjr265.me
5.2 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.
| | damienradtke.com
25.9 parsecs away

Travel
|