首页 > 代码库 > siege 使用

siege 使用

命令格式:siege -c 并发量 -r 反复次数 -f urllist文件

使用Siege格式。我们将模拟一个负载測试,5个并发用户在10秒内訪问站点www.example. com。须要说明一下,使用Siege时的并发被称为事务。

因此我们要模拟的測试是使用Siege命令让Webserver在10秒的时间内一次满足5个同一时候发生的事务.

结果说明:

 Lifting the server siege… done.
 Transactions: 3419263 hits //完毕419263次处理
 Availability: 100.00 % //100.00 % 成功率
 Elapsed time: 5999.69 secs //总共用时
 Data transferred: 84273.91 MB //共传输数据84273.91 MB
 Response time: 0.37 secs //对应用时1.65秒:显示网络连接的速度
 Transaction rate: 569.91 trans/sec //均每秒完毕 569.91 次处理:表示server后
 Throughput: 14.05 MB/sec //平均每秒传送数据
 Concurrency: 213.42 //实际最高并发数
 Successful transactions: 2564081 //成功处理次数
 Failed transactions: 11 //失败处理次数
 Longest transaction: 29.04 //每次传输所花最长时间
 Shortest transaction: 0.00 //每次传输所花最短时间
<script type="text/javascript"> $(function () { $(‘pre.prettyprint code‘).each(function () { var lines = $(this).text().split(‘\n‘).length; var $numbering = $(‘
    ‘).addClass(‘pre-numbering‘).hide(); $(this).addClass(‘has-numbering‘).parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($(‘
  • ‘).text(i)); }; $numbering.fadeIn(1700); }); }); </script>

siege 使用