Updated LearnServerProgramming (markdown)

Sameer Ajmani 2015-01-09 10:25:52 -05:00
parent 1fd5c16e81
commit 1eab64f0fc

@ -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. These goroutines share memory by communicating via channels. [LearnConcurrency](/golang/go/wiki/LearnConcurrency) outlines a course of study on Go's concurrency model.
In Go servers, each incoming request is handled in its own goroutine. These goroutines share memory by communicating. [LearnConcurrency](/golang/go/wiki/LearnConcurrency) outlines a course of study of Go's concurrency model, including techniques that are useful in server programming.
## Communication