Apache的bin目录下有个ab.exe,是自带压力测试工具,简单介绍下
使用:在控制台打开Apache的bin目录,然后使用 ab.exe -n 110 -c 210 http://xxxxxxx 回车
指令意思: -n (访问总次数) -c (并发数) http://(目标URL)
比较重要的信息 Concurrency Level: 110 访问110次
Time taken for tests: 0.250 seconds 共使用了多少时间(当然是越小越好)
Complete requests: 210 210个并发数
Requests per second: 840.00 [#/sec] (mean) 每秒完成多少请求(当然是越大越好)
Time per request: 130.952 [ms] (mean) 用户平均请求等待时间(当然是越小越好)