abweb
./ab -c 100 -n 10000 http://127.0.0.1/test.jpgapi
-n 10000 即: 共發送10000個請求併發
-c 100 即:每次併發100個
app
ab -n 100000 -c 149 -H keywords:dt -p /root/file/param.conf -T 'application/x-www-form-urlencoded' http://127.0.0.1/test.jpg
-p:包含post請求的參數文件。文件內容相似:sk=1babb55a0b4b4dd2a&apitype=restaurant&p=tJoLaT4monpost
-T:content-type 。請求內容類型url
n:總請求數rest
c:併發客戶端數code
H:自定義消息頭orm
參數說明:-c表示併發數,-t表示時間(秒)it