Adding a link to an article that I've found explains the basic concepts using Go really well.

Yesudeep Mangalapilly 2015-07-20 13:52:45 +05:30
parent e0e601732b
commit f5aef61ed6

@ -20,6 +20,7 @@ This page links to resources for learning about concurrency in Go. The items ar
- Study [Go by Example](https://gobyexample.com) from [goroutines](https://gobyexample.com/goroutines) through [stateful goroutines](https://gobyexample.com/stateful-goroutines)
## Intermediate
- Read [Fundamentals of Concurrency](https://www.nada.kth.se/~snilsson/concurrency/)
- Watch [Go Concurrency Patterns](https://talks.golang.org/2012/concurrency.slide#1)
- Read [Share Memory By Communicating](http://blog.golang.org/share-memory-by-communicating) and do the [codewalk](http://golang.org/doc/codewalk/sharemem/)
- Read [Go Concurrency Patterns: Timing out, moving on](http://blog.golang.org/go-concurrency-patterns-timing-out-and)