wget http://download.joedog.org/siege/siege-4.0.4.tar.gz
tar -xzf siege-4.0.4.tar.gz
cd siege-4.0.4/
./configure
make && make install
-c 200 指定并发数200
-r 5 指定测试的次数5(默认:分钟)+s指定秒数
-f url.txt 指定url的文件
-i internet系统,随机发送url
-b 请求无需等待 delay=0
-t 5 持续测试5分钟
# -r和-t一般不同时使用
a. GET请求:
siege -c 1000 -t 2s http://dollarphp.com/
b. POST请求:
siege -c 1000 -t 2s "http://dollarphp.com/ POST name=lee&sex=male"
原文地址:http://blog.51cto.com/12173069/2298507
时间: 2024-10-19 03:57:23