Apache Benchmark,简称ab的使用

使用前,配置bin目录环境变量,方便使用。

ab命令格式:
-N|–count 总请求数,缺省 : 5w
-C|–clients 并发数, 缺省 : 100
-R|–rounds 测试次数, 缺省 : 10 次
-S|-sleeptime 间隔时间, 缺省 : 10 秒
-I|–min 最小并发数, 缺省: 0
-X|–max 最大并发数,缺省: 0
-J|–step 次递增并发数
-R|–runtime 总体运行时间,设置此项时最大请求数为5w
-P|–postfile post数据文件路径
-U|–url 测试地址

POST示例:
ab -n 1 -p test.json -T application/json http://localhost:8080/xxx
其中-p指定post请求参数文件,
-T指定Content-Type,
test.json内容如下:
{
“orgaid”:“F6C68AAFA38D437CE040007F01001D3D”,
“start”:“0”,
“end”:“2”
}

你可能感兴趣的:(javaweb,ab)