Webフレームワークはこの辺から選ぶ
https://github.com/avelino/awesome-go#web-frameworks
https://github.com/go-martini/martini
https://github.com/codegangsta/gin
http://yuroyoro.hatenablog.com/entry/2014/06/15/173043
https://gophercasts.io/lessons/4-postgres-basics
https://github.com/golang-samples/http/blob/master/handlefunc/main.go
brew install postgresql
ghq get https://github.com/GopherCasts/Lessons
# git clone https://github.com/GopherCasts/Lessons
cd $GOPATH/src/github.com/GopherCasts/Lessons/lesson4
createdb lesson4 -E utf8
psql lesson4 -f data.sql
go get github.com/codegangsta/gin
go get github.com/go-martini/martini
go get github.com/martini-contrib/render
go get github.com/lib/pqBenchmarking Nginx with Go
https://gist.github.com/hgfischer/7965620