Golang Concurrency #5 - Select
Select statement
Select lets you wait on multiple channel operations at once. It picks whichever channel is ready first.
Basic syntax
select {
case value := <-ch1:
// Handle ch1
case value := <-ch2:
// Handle ch2
}
Key clarifications
1. Sele...
tigerabrodi.blog1 min read