From cff9793dd7c2468132c9fc0b4d88cf04757d0265 Mon Sep 17 00:00:00 2001 From: Sameer Ajmani Date: Fri, 9 Jan 2015 10:37:29 -0500 Subject: [PATCH] Updated LearnServerProgramming (markdown) --- LearnServerProgramming.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/LearnServerProgramming.md b/LearnServerProgramming.md index e97bb193..217e0cba 100644 --- a/LearnServerProgramming.md +++ b/LearnServerProgramming.md @@ -1,6 +1,9 @@ This page links to resources for learning about server programming in Go. The items are organized into sections by topic. -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. +## Getting Started + +- Code [A Tour of Go: Web Servers](http://tour.golang.org/methods/13) and [HTTP Handlers](http://tour.golang.org/methods/14) +- [LearnConcurrency](/golang/go/wiki/LearnConcurrency) outlines a course of study of Go's concurrency model, including techniques that are useful in server programming. ## Communication