登录
首页 >  Golang >  Go问答

golang http server

来源:SegmentFault

时间:2023-01-18 13:13:29 112浏览 收藏

IT行业相对于一般传统行业,发展更新速度更快,一旦停止了学习,很快就会被行业所淘汰。所以我们需要踏踏实实的不断学习,精进自己的技术,尤其是初学者。今天golang学习网给大家整理了《golang http server》,聊聊go、server、net-http,我们一起来看看吧!

问题内容

吐血求助

先看下代码 很简单的一个golang http server

func hello (w http.ResponseWriter, r *http.Request) {
        fmt.Println("1",time.Now().Format("2006-01-02 15:04:05"))
        time.Sleep(5*time.Second)
        fmt.Println("2",time.Now().Format("2006-01-02 15:04:05"))
        w.Write([]byte("hello world"))
}

func main() {
http.HandleFunc("/hello",hello)
http.ListenAndServe(":8888", nil)
}

为了测试并发度,在响应函数中sleep 5s

go run 之后,client端使用ab模拟并发请求

ab -n 4 http://127.0.0.1:8888/hello

看server日志打印结果

localhost:src zhangjingpeng$ go run main.go
1 2016-01-05 22:08:05
2 2016-01-05 22:08:10
1 2016-01-05 22:08:10
2 2016-01-05 22:08:15
1 2016-01-05 22:08:15
2 2016-01-05 22:08:20
1 2016-01-05 22:08:20
2 2016-01-05 22:08:25

希望服务端是并发,即,首先都把1标签打印出来,然后再把2标签打印出来

看了net/http的源码,在1911行使用了go 去做并发。

1911                 go c.serve()

为什么在应用过程中不是并发的呢

正确答案

ab -c4 -n4 http://127.0.0.1:8888/hello

ab 没有并发,和 go 没有关系。

今天关于《golang http server》的内容介绍就到此结束,如果有什么疑问或者建议,可以在golang学习网公众号下多多回复交流;文中若有不正之处,也希望回复留言以告知!

声明:本文转载于:SegmentFault 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>
评论列表