其实这一章的内容, 我们在之前的测试章节都已经涉及过了.
一....func main() {
h := new(handler)
http.ListenAndServe(":8889", h)
}
这就模拟了一个服务端, 我们可以网客户端发各种各样的数据...发送带有header的http请求
package main
import (
"fmt"
"io/ioutil"
"net/http"
)
func main() {...第四个讲的是pprof, 我之前在测试的时候已经详细研究过pprof用来监控web服务的性能, 这里就不在描述了,
给出一个连接: https://www.cnblogs.com/ITPower/articles...其他标准库, 这里也是一代而过, 讲的并不详细, 学完这门课, 我们在集中精力研究各个标准库