如果我想使用Go创建Web服务,我将使用什么Web服务器?
我的Web服务需要与MysqL,redis和memcached进行交互.每个都有稳定的库吗?
解决方法
标准库中的
net/http包是稳定且并发的(每个客户端goroutine).
http.Handle("/foo",fooHandler) http.HandleFunc("/bar",func(w http.ResponseWriter,r *http.Request) { fmt.Fprintf(w,"Hello,%q",html.EscapeString(r.URL.Path)) }) log.Fatal(http.ListenAndServe(":8080",nil))
阅读Writing Web Applications之后,您将拥有在Go中编写惯用Web应用程序的必要技能.