Updated LearnServerProgramming (markdown)

Sameer Ajmani 2015-01-09 10:24:41 -05:00
parent 95ff25809e
commit 1fd5c16e81

@ -1,6 +1,6 @@
This page links to resources for learning about server programming in Go. The items are organized into sections by topic.
Go servers process each request in its own goroutine. To share memory safely, these goroutines must communicate. [LearnConcurrency](/golang/go/wiki/LearnConcurrency) outlines a course of study.
Go servers process each request in its own goroutine. These goroutines share memory by communicating via channels. [LearnConcurrency](/golang/go/wiki/LearnConcurrency) outlines a course of study on Go's concurrency model.
## Communication