我正在嘗試在我正在使用的網站上找到各種基準測試工具,並且發現Apache Bench
(ab)是用於負載測試的優秀工具。這是一個命令行工具,很容易使用,顯然。但是我對它的兩個基本標誌有疑問。我在閱讀該網站說:使用ab的網站基準測試
Suppose we want to see how fast Yahoo can handle 100 requests, with a maximum of 10 requests running concurrently:
ab -n 100 -c 10 http://www.yahoo.com/
併爲標誌的解釋規定:
Usage: ab [options] [http[s]://]hostname[:port]/path
Options are:
-n requests Number of requests to perform
-c concurrency Number of multiple requests to make
我想我只是不能夠環繞number of requests to perform
和number of multiple requests to make
我的頭。當我像上面的例子一樣給他們兩個人時會發生什麼?
任何人都可以給我一個簡單的解釋,這兩個標誌一起做什麼?