golang 实现的 http 请求库。本次版本带来一些细节上的优化。http 请求库作用是让你发送 json/formdata 之类数据更 easy,bind 数据更爽。gout 除了是 restful api 库还是压测 lib,可以完成 ab, wrk 完成的工作。
本次版本是 v0.0.12
https://github.com/guonaihong/gout
提升压测子模块的吞吐效率。
自定义压测函数,构造每次不一样的 http request 数据。 相比 wrk 需要写 lua,在 go lib 里面解决自定义压测会更 easy
package main
import (
"fmt"
"github.com/google/uuid"
"github.com/guonaihong/gout"
"github.com/guonaihong/gout/filter"
"sync/atomic"
)
func main() {
i := int32(0)
err := filter.NewBench().
Concurrent(30). //开 30 个 go 程
Number(30000). //压测 30000 次
Loop(func(c *gout.Context) error {
// 下面的代码,每次生成不一样的 http body 用于压测
uid := uuid.New() //生成 uuid
id := atomic.AddInt32(&i, 1) //生成 id, 可以理解为++i,线程安全版本
c.POST(":1234").SetJSON(gout.H{"sid": uid.String(),
"appkey": fmt.Sprintf("ak:%d", id),
"text": fmt.Sprintf("test text :%d", id)}) //这里不要运行 Do()函数
return nil
}).Do()
if err != nil {
fmt.Printf("err = %v\n", err)
}
}
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.