ab,即Apache Benchmark,在Apache的安装目录中找到它。
安装目录/bin/ab.exe
。 ab -n 数字 -c 数字 url路径
我们对位于本地Apache服务器上、URL为localhost/index.php的页面进行压力测试。
测试总次数为1000,并发数为100(相当于100个用户同时访问,他们总共访问1000次)。
ab -n 1000 -c 100 localhost/index.php