ab 的用法是:ab [options] [http://]hostname[:port]/path
例如:ab -n 5000 -c 200 http://localhost/index.php
上例表示总共访问http://localhost/index.php这个脚本5000次,200并发同时执行。
ab常用参数的介绍:
-n :总共的请求执行数,缺省是1;
-c: 并发数,缺省是1;
-t:测试所进行的总时间,秒为单位,缺省50000s
-p:POST时的数据文件,这里参考博文 ab 以POST方式发送数据到服务器
-w: 以HTML表的格式输出结果
如果链接后台有get参数,链接加上双引号
ab -n 5000 -c 200 "http://localhost/index.php?m=a&c=b&a=c"