-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fd21a36
commit e3e0095
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# pounce | ||
HTTP benchmark utility | ||
|
||
pounce is designed to push the limit of HTTP benchmarking tools | ||
|
||
Build | ||
----- | ||
|
||
wget https://github.com/fredrikwidlund/pounce/releases/download/v1.0.0/pounce-1.0.0.tar.gz | ||
tar fxz pounce-1.0.0.tar.gz | ||
./configure | ||
make | ||
|
||
Run | ||
--- | ||
|
||
./bin/pounce http://127.0.0.1 | ||
requests 1767450 rps, success 100.00%, latency 38.58us/90.45us/971.71us/8.29us, usage 44.67% of 111.90Ghz | ||
|
||
Compare | ||
------- | ||
wrk -t40 -c160 http://127.0.0.1 | ||
Running 10s test @ http://127.0.0.1 | ||
40 threads and 160 connections | ||
Thread Stats Avg Stdev Max +/- Stdev | ||
Latency 495.42us 1.14ms 20.08ms 90.10% | ||
Req/Sec 33.09k 6.63k 94.35k 68.78% | ||
13199984 requests in 10.10s, 1.66GB read | ||
Requests/sec: 1306921.73 | ||
Transfer/sec: 168.26MB | ||
|