1 我們可以模擬100個(gè)并發(fā)用戶惑艇,對(duì)一個(gè)頁面發(fā)送1000個(gè)請(qǐng)求
./ab -n1000 -c100 https://www.baidu.com/
其中-n代表請(qǐng)求數(shù)蒿辙,-c代表并發(fā)數(shù)
ab常用參數(shù)的介紹:
-n :總共的請(qǐng)求執(zhí)行數(shù),缺省是1滨巴;
-c: 并發(fā)數(shù)思灌,缺省是1;
-t:測試所進(jìn)行的總時(shí)間恭取,秒為單位习瑰,缺省50000s
-p:POST時(shí)的數(shù)據(jù)文件
-w: 以HTML表的格式輸出結(jié)果
執(zhí)行測試用例:ab -n 1000 -c 100 -w http://localhost/index.php >>1.html
上面的測試用例表示100并發(fā)的情況下,共測試訪問index.php腳本1000次秽荤,并將測試結(jié)果保存到1.html文件中。
返回結(jié)果:
首先是apache的版本信息
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking vm1.jianfeng.com (be patient)
Server Software: Apache/2.2.19 ##apache版本
Server Hostname: vm1.jianfeng.com ##請(qǐng)求的機(jī)子
Server Port: 80 ##請(qǐng)求端口
Document Path: /a.html
Document Length: 25 bytes ##頁面長度
Concurrency Level: 100 ##并發(fā)數(shù)
Time taken for tests: 0.273 seconds ##共使用了多少時(shí)間
Complete requests: 1000 ##請(qǐng)求數(shù)
Failed requests: 0 ##失敗請(qǐng)求
Write errors: 0
Total transferred: 275000 bytes ##總共傳輸字節(jié)數(shù)柠横,包含http的頭信息等
HTML transferred: 25000 bytes ##html字節(jié)數(shù)窃款,實(shí)際的頁面?zhèn)鬟f字節(jié)數(shù)
Requests per second: 3661.60 [#/sec] (mean) ##每秒多少請(qǐng)求,這個(gè)是非常重要的參數(shù)數(shù)值牍氛,服務(wù)器的吞吐量
Time per request: 27.310 [ms] (mean) ##用戶平均請(qǐng)求等待時(shí)間
Time per request: 0.273 [ms] (mean, across all concurrent requests) ##服務(wù)器平均處理時(shí)間晨继,也就是服務(wù)器吞吐量的倒數(shù)
Transfer rate: 983.34 [Kbytes/sec] received ##每秒獲取的數(shù)據(jù)長度
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 1 2.3 0 16
Processing: 6 25 3.2 25 32
Waiting: 5 24 3.2 25 32
Total: 6 25 4.0 25 48
Percentage of the requests served within a certain time (ms)
50% 25 ## 50%的請(qǐng)求在25ms內(nèi)返回
66% 26 ## 60%的請(qǐng)求在26ms內(nèi)返回
75% 26
80% 26
90% 27
95% 31
98% 38
99% 43
100% 48 (longest request)