下载工具包,借鉴的这哥们的文章
https://www.cnblogs.com/chanwahfung/p/11877021.html
下载后,使用还是挺方便,自己只是对自己写的接口,做下简单的并发测试。
转载自下面几个文章
http://www.danyuanblog.com/blog/app/blog/blogDetail.html?id=5e5d03c04c636312f4b70901
https://www.cnblogs.com/chanwahfung/p/11877021.html
- 第一步,进入D:\tool\Apache24\conf 对配置文件,将监听端口,和服务端口,改为了8089
- 第二步,在D:\tool\Apache24\bin 目录,打开cmd窗口,就可以执行命令了
执行命令 : 2000次请求,1000个并发,get请求 其中-n代表请求数,-c代表并发数
.\ab -n 2000 -c 1000 http://localhost:8088/api/signIn/test/sign
对结果进行分析:
结果分析
##首先是apache的版本信息
This is ApacheBench, Version 2.3 <Revision:655654>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.xxx.xxx/
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking xxx.xxx.com (be patient)
Server Software: Apache/2.2.19 ##apache版本
Server Hostname: vm1.xxx.com ##请求的机子
Server Port: 80 ##请求端口
Document Path: /xxx.html
Document Length: 25 bytes ##页面长度
Concurrency Level: 100 ##并发数
Time taken for tests: 0.273 seconds ##共使用了多少时间
Complete requests: 1000 ##请求数
Failed requests: 0 ##失败请求
Write errors: 0
Total transferred: 275000 bytes ##总共传输字节数,包含http的头信息等
HTML transferred: 25000 bytes ##html字节数,实际的页面传递字节数
Requests per second: 3661.60 [#/sec] (mean) ##每秒多少请求,这个是非常重要的参数数值,服务器的吞吐量
Time per request: 27.310 [ms] (mean) ##用户平均请求等待时间
Time per request: 0.273 [ms] (mean, across all concurrent requests) ##服务器平均处理时间,也就是服务器吞吐量的倒数
Transfer rate: 983.34 [Kbytes/sec] received ##每秒获取的数据长度
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%的请求在25ms内返回
66% 26 ## 60%的请求在26ms内返回
75% 26
80% 26
90% 27
95% 31
98% 38
99% 43
100% 48 (longest request)