From a579c3228152e51b6a30bf7403f187b7ca9b3e5f Mon Sep 17 00:00:00 2001 From: chgzm Date: Mon, 11 Dec 2023 19:36:59 +0900 Subject: fix default cycle time in fbench-usage to 0 --- fbench/README | 2 +- fbench/src/fbench/fbench.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'fbench') diff --git a/fbench/README b/fbench/README index 17807cb3931..86e0072a2d0 100644 --- a/fbench/README +++ b/fbench/README @@ -103,7 +103,7 @@ mark optional parameters and default values): | [-r restartLimit] [-k] | | -n : run with parallel clients [10] -| -c : each client will make a request each milliseconds [1000] +| -c : each client will make a request each milliseconds [0] | ('-1' -> cycle time should be twice the response time) | -l : minimum response size for successful requests [0] | -i : do not log the first results. -1 means no logging [0] diff --git a/fbench/src/fbench/fbench.cpp b/fbench/src/fbench/fbench.cpp index 8617c456d94..0e429511eca 100644 --- a/fbench/src/fbench/fbench.cpp +++ b/fbench/src/fbench/fbench.cpp @@ -299,7 +299,7 @@ FBench::Usage() printf(" -P : use POST for requests instead of GET.\n"); printf(" -a : append string to each query\n"); printf(" -n : run with parallel clients [10]\n"); - printf(" -c : each client will make a request each milliseconds [1000]\n"); + printf(" -c : each client will make a request each milliseconds [0]\n"); printf(" ('-1' -> cycle time should be twice the response time)\n"); printf(" -l : minimum response size for successful requests [0]\n"); printf(" -i : do not log the first results. -1 means no logging [0]\n"); -- cgit v1.2.3