隐藏访问内容显示访问花费时间
curl -s -w "%{time_total}\n" -o /dev/null -X POST -H "Cache-Control: no-cache" -d '["帝森置业集团有限公司"]' http://172.210.5.1:22000/companygraph/queryGraphByCompanyName >> test-time.txt
显示访问内容和花费时间
curl -s -w "%{time_total}\n" -X POST -H "Cache-Control: no-cache" -d '["帝森置业集团有限公司"]' http://172.210.5.1:22000/companygraph/queryGraphByCompanyName >> test-time.txt
开启10个线程访问1000条数据,并保存访问时间
- 1000条下面数据列在curlgremlins.txt文件中,其中公司名称要替换
curl -s -w "%{time_total}\n" -o /dev/null -X POST -H "Cache-Control: no-cache" -d '["帝森置业集团有限公司"]' http://172.210.5.1:22000/companygraph/queryGraphByCompanyName >> test-time.txt
2.执行如下语句
< curl gremlins.txt xargs -r -L 1 -P 10 curl >> test-time.txt
网友评论