Rumah > Artikel > Operasi dan penyelenggaraan > 本地安装webbench步骤
wget
tar zxvf webbench-1.5.tar.gz
make && make install
安装完毕。
一般我们只用到-c和-t两个参数,类似下面这样:
webbench -c 300 -t 60 http://127.0.0.1/
-t表示运行测试的时间,如果不指定默认是30秒,-c表示客户端数量,也就是并发数。
安装siege:
wget
tar zxf siege-2.67.tar.gz
cd siege-2.67
./configure && make && make install
siege -c 10000 -r 10 http://127.0.0.1/
-c是并发量,-r是重复次数。
Atas ialah kandungan terperinci 本地安装webbench步骤. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!