jmeter
性能不敢恭维,优点是图形化,windows可以用
ab
运行于linux
ab -T "application/json" -n 100000000 -c 60 -v 3 -p json.bin
-T:header
-n:请求总数
-c:客户端数
-v:日志打印级别
-p:要发送的数据文件
siege
运行于linux
siege -c 100 -t 1M "http://192.168.3.221:8000/syntime POST < post.json"
-c:客户端数
-t:多长时间发送完
""里的内容是 url 请求方式 <要发送的数据文件