- Notifications
You must be signed in to change notification settings - Fork228
⚡ Go web framework benchmark
License
smallnest/go-web-framework-benchmark
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
This benchmark suite aims to compare the performance of Go web frameworks. It is inspired byGo HTTP Router Benchmark but this benchmark suite is different with that. Go HTTP Router Benchmark suit aims to compare the performance ofrouters but this Benchmark suit aims to compare whole HTTP request processing.
Last Test Updated: 2020-05
test environment
- CPU: KVM Virtual CPU version(2 GHz, 4 cores)
- Memory: 16G
- Go: go1.18.5 linux/amd64
- OS: Ubuntu 22.04.1 LTS with Kernel 5.15.0-41-generic
Only test those webframeworks which are stable
- atreugo
- baa
- beego
- bone
- chi
- clevergo
- default http
- denco
- don
- echo
- fasthttp-routing
- fasthttp/router
- fasthttp
- fiber
- gear
- gearbox
- gem
- gin
- goframe
- go-ozzo
- go-restful
- go-tigertonic
- goji
- goji
- golf
- gorilla
- gorouter
- goyave
- httprouter
- httptreemux
- httpz
- indigo
- lars
- lion
- macaron
- muxie
- negroni
- pat
- pulse
- pure
- r2router
- tango
- tinyrouter
- treemux
- violetear
- vulcan
- webgo
some libs have not been maintained and the test code has removed them
When I investigated performance of Go web frameworks, I foundGo HTTP Router Benchmark, created by Julien Schmidt. He also developed a high performance http router:httprouter. I had thought I got the performance result until I created a piece of codes to mock the real business logics:
api.Get("/rest/hello",func(c*XXXXX.Context) {sleepTime:=strconv.Atoi(os.Args[1])//10msifsleepTime>0 {time.Sleep(time.Duration(sleepTime)*time.Millisecond)}c.Text("Hello world")})
When I use the above codes to test those web frameworks, the token time of route selection is not so important in the whole http request processing, although performance of route selection of web frameworks are very different.
So I create this project to compare performance of web frameworks including connection, route selection, handler processing. It mocks business logics and can set a special processing time.
Then you can get some interesting results if you use it to test.
When you test a web framework, this test suit will starts a simple http server implemented by this web framework. It is a real http server and only contains GET url: "/hello".
When this server processes this url, it will sleep n milliseconds in this handler. It mocks the business logics such as:
- read data from sockets
- write data to disk
- access databases
- access cache servers
- invoke other microservices
- ……
It contains a test.sh that can do those tests automatically.
It useswrk to test.
The first test case is to mock 0 ms, 10 ms, 100 ms, 500 ms processing time in handlers.
the concurrency clients are 5000.
Latency is the time of real processing time by web servers. The smaller is the better.
Allocs is the heap allocations by web servers when test is running. The unit is MB. The smaller is the better.
If we enable http pipelining, test result as below:
In 30 ms processing time, the test result for 100, 1000, 5000 clients is:
If we enable http pipelining, test result as below:
You should install this package first if you want to run this test.
go get github.com/smallnest/go-web-framework-benchmarkIt takes a while to install a large number of dependencies that need to be downloaded. Once that command completes, you can run:
cd $GOPATH/src/github.com/smallnest/go-web-framework-benchmarkgo build -o gowebbenchmark ../test.shIt will generate test results in processtime.csv and concurrency.csv. You can modify test.sh to execute your customized test cases.
- If you also want to generate latency data and allocation data, you can run the script:
./test-latency.sh- If you don't want use keepalive, you can run:
./test-latency-nonkeepalive.sh- If you want to test http pipelining, you can run:
./test-pipelining.sh- If you want to test some of web frameworks, you can modify the test script and only keep your selected web frameworks:
……web_frameworks=("default" "atreugo" "beego" "bone" "chi" "denco" "don" "echo" "fasthttp" "fasthttp-routing" "fasthttp/router" "fiber" "gear" "gearbox" "gin" "goframe" "goji" "gorestful" "gorilla" "gorouter" "gorouterfasthttp" "go-ozzo" "goyave" "httprouter" "httptreemux" "indigo" "lars" "lion" "muxie" "negroni" "pat" "pulse" "pure" "r2router" "tango" "tiger" "tinyrouter" "violetear" "vulcan" "webgo")……- If you want to test all cases, you can run:
./test-all.shNOTE: comparing 2 webframeworks consumes approx. 11-13 minutes (doesn't depend on the machine). Justtest.sh with allthe webframeworks enabled will take a couple of hours to run.
All the graphs are generated automatically as the./test.sh finishes. However, if the run was interrupted, you cangenerate them manually of partial data by executingplot.sh in testresults directory.
Welcome to add new Go web frameworks. You can follow the below steps and send me a pull request.
- add your web framework link in README
- add a hello implementation in server.go
- add your webframework in libs.sh
Please add your web framework alphabetically.
About
⚡ Go web framework benchmark
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Packages0
Uh oh!
There was an error while loading.Please reload this page.





