From 140581f47e382e9144cc7107716ad9a293c2a395 Mon Sep 17 00:00:00 2001 From: timowang1991 Date: Mon, 23 Dec 2019 20:47:02 +0800 Subject: [PATCH] fix --total option description --- www/docs/options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/docs/options.md b/www/docs/options.md index c703ed0c..012ac3d6 100644 --- a/www/docs/options.md +++ b/www/docs/options.md @@ -70,7 +70,7 @@ Number of requests to run concurrently. Total number of requests cannot be small ### `-n`, `--total` -The total number of requests to run. Default is `200`. The combination of `-c` and `-n` are critical in how the benchmarking is done. `ghz` takes the `-c` argument and spawns that many worker goroutines. In parallel these goroutines each do their share (`c / n`) requests. So for example with the default `-c 50 -n 200` options we would spawn `50` goroutines which in parallel each do `40` requests. +The total number of requests to run. Default is `200`. The combination of `-c` and `-n` are critical in how the benchmarking is done. `ghz` takes the `-c` argument and spawns that many worker goroutines. In parallel these goroutines each do their share (`n / c`) requests. So for example with the default `-c 50 -n 200` options we would spawn `50` goroutines which in parallel each do `4` requests. ### `-q`, `--qps`