Husky is a Simple HTTP Server Frame Based on ThreadPool.
It is just a simple server, not forcussing on performance, but it is very easy to use. That is what it born to be.
- Only Headers file: what you need to do is
include
it. - No dependence: No dependence, No hurts.
./build.sh
./threadpoolserver --port 11257
or
./nonblockingserver --port 11257
curl "http://127.0.0.1:11257/?hello=world&myname=yanyiwu"
curl -d "hello world, my name is yanyiwu." "http://127.0.0.1:11257"
Its source code is test/demo.cpp
. Its code has only 30+ lines.
go get github.com/yanyiwu/go_http_load
GET
go_http_load -method=GET -get_urls="../test/testdata/get.urls" -goroutines=1 -loop_count=5000
The Number of Queries:10000
The Time Consumed: 4.539 s
Query Per Second: 2203.046 q/s
POST
go_http_load -method=POST -post_url="http://127.0.0.1:11257" -post_data_file="../test/testdata/post.data" -goroutines=1 -loop_count=5000
The Number of Queries:5000
The Time Consumed: 2.448 s
Query Per Second: 2042.887 q/s