<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[张宴的博客]]></title> 
<link>http://zyan.cc/index.php</link> 
<description><![CDATA[Web系统架构与底层研发]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[张宴的博客]]></copyright>
<item>
<link>http://zyan.cc/post/288/</link>
<title><![CDATA[找到一款不错的网站压力测试工具webbench[原创]]]></title> 
<author>张宴 &lt;net@s135.com&gt;</author>
<category><![CDATA[其他Unix技术]]></category>
<pubDate>Tue, 28 Aug 2007 01:39:02 +0000</pubDate> 
<guid>http://zyan.cc/post/288/</guid> 
<description>
<![CDATA[ 
	　　webbench最多可以模拟3万个并发连接去测试网站的负载能力，个人感觉要比Apache自带的ab压力测试工具好，安装使用也特别方便。<br/><br/>　　1、适用系统：Linux<br/><br/>　　2、编译安装：<div class="quote"><div class="quote-title">引用</div><div class="quote-content">wget <a href="http://blog.zyan.cc/soft/linux/webbench/webbench-1.5.tar.gz" target="_blank">http://blog.zyan.cc/soft/linux/webbench/webbench-1.5.tar.gz</a><br/>tar zxvf webbench-1.5.tar.gz<br/>cd webbench-1.5<br/>make && make install</div></div><br/>　　3、使用：<div class="quote"><div class="quote-title">引用</div><div class="quote-content">webbench -c 500 -t 30 <a href="http://127.0.0.1/test.jpg" target="_blank">http://127.0.0.1/test.jpg</a></div></div>　　参数说明：-c表示并发数，-t表示时间(秒)<br/><br/>　　4、测试结果示例：<div class="quote"><div class="quote-title">引用</div><div class="quote-content">Webbench - Simple Web Benchmark 1.5<br/>Copyright (c) Radim Kolar 1997-2004, GPL Open Source Software.<br/><br/>Benchmarking: GET <a href="http://127.0.0.1/test.jpg" target="_blank">http://127.0.0.1/test.jpg</a><br/>500 clients, running 30 sec.<br/><br/>Speed=3230 pages/min, 11614212 bytes/sec.<br/>Requests: 1615 susceed, 0 failed.</div></div><br/>Tags - <a href="http://zyan.cc/tags/linux/" rel="tag">linux</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/288/#blogcomment261</link>
<title><![CDATA[[评论] 找到一款不错的网站压力测试工具webbench[原创]]]></title> 
<author>TMD &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Tue, 28 Aug 2007 03:55:14 +0000</pubDate> 
<guid>http://zyan.cc/post/288/#blogcomment261</guid> 
<description>
<![CDATA[ 
	张老师：您好，请问能不能在Linux下监控服务器的CPU ,内存和 MySQL数据库的使用情况呢?能否再发贴补上呀?关注+ING......
]]>
</description>
</item><item>
<link>http://zyan.cc/post/288/#blogcomment268</link>
<title><![CDATA[[评论] 找到一款不错的网站压力测试工具webbench[原创]]]></title> 
<author>AA &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Wed, 29 Aug 2007 01:10:54 +0000</pubDate> 
<guid>http://zyan.cc/post/288/#blogcomment268</guid> 
<description>
<![CDATA[ 
	师兄：我要用php连接数据库经处理后想把文件保存成xml格式的文件，请问php怎么生成xml格式文件？
]]>
</description>
</item><item>
<link>http://zyan.cc/post/288/#blogcomment269</link>
<title><![CDATA[[评论] 找到一款不错的网站压力测试工具webbench[原创]]]></title> 
<author>zhangluoer &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Wed, 29 Aug 2007 01:27:55 +0000</pubDate> 
<guid>http://zyan.cc/post/288/#blogcomment269</guid> 
<description>
<![CDATA[ 
	我感觉cpu的使用率统计的没什么意思？因为有时候可能瞬间CPU的使用率会很高，这样做有意义吗？<br/>还不监控服务器的负载好点。uptime的输出或top命令的输出来的好此。
]]>
</description>
</item><item>
<link>http://zyan.cc/post/288/#blogcomment271</link>
<title><![CDATA[[评论] 找到一款不错的网站压力测试工具webbench[原创]]]></title> 
<author>TDD &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Wed, 29 Aug 2007 03:49:45 +0000</pubDate> 
<guid>http://zyan.cc/post/288/#blogcomment271</guid> 
<description>
<![CDATA[ 
	张老师：<br/> &nbsp; &nbsp;您好！如何采用PHP实现以下：<br/><br/>采用数据集成（Socket+XML）方式，即在接口传输协议采用SOCKET，数据传输数据格式采用XML。<br/> <br/>接口通讯的消息格式：<br/>1）&nbsp;&nbsp;发送的数据包，都必须严格按“&lt;数据包头&gt;+&lt;数据包长度&gt;+&lt;数据包内容&gt;+&lt;数据包尾&gt;”。<br/> &nbsp; &nbsp; &nbsp;&nbsp;数据包头：以‘\s’开头，两个字节。<br/> &nbsp; &nbsp; &nbsp;&nbsp;数据包长度：包括数据包头、包尾、数据包长度字段的（两个字节）、包体。四个字节。<br/> &nbsp; &nbsp;&nbsp;&nbsp;数据包体：XML格式，详细XML数据包待讨论。<br/> &nbsp; &nbsp; &nbsp;&nbsp;数据包尾：以‘\e’结尾。两个字节。<br/>2)&nbsp;&nbsp;数据格式要求：时间格式统一为yyyymmddhh24miss<br/>3)&nbsp;&nbsp;系统双方采用短连接，不使用心跳机制。<br/>4)&nbsp;&nbsp;系统双方具有重发机制：每次发送数据包的时候，带有发送次数，当另一端接受数据包后，将返回应答信息，如果在规定的时间内（每30S），没有收到应答信息，将重新发送，发送次数加+1，达到N次后（N值=100），将不再重新发送。在双方的界面上能体现失败。
]]>
</description>
</item><item>
<link>http://zyan.cc/post/288/#blogcomment276</link>
<title><![CDATA[[评论] 找到一款不错的网站压力测试工具webbench[原创]]]></title> 
<author>alpha &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Fri, 31 Aug 2007 07:31:41 +0000</pubDate> 
<guid>http://zyan.cc/post/288/#blogcomment276</guid> 
<description>
<![CDATA[ 
	有一些优秀的开源软件,如nagios, cacti等,许多公司都在用,监控系统性能方面比较强.
]]>
</description>
</item><item>
<link>http://zyan.cc/post/288/#blogcomment281</link>
<title><![CDATA[[评论] 找到一款不错的网站压力测试工具webbench[原创]]]></title> 
<author>jackbillow &lt;jackbillow@gmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Fri, 31 Aug 2007 10:19:13 +0000</pubDate> 
<guid>http://zyan.cc/post/288/#blogcomment281</guid> 
<description>
<![CDATA[ 
	loadRunner,siege也不错。：）
]]>
</description>
</item><item>
<link>http://zyan.cc/post/288/#blogcomment534</link>
<title><![CDATA[[评论] 找到一款不错的网站压力测试工具webbench[原创]]]></title> 
<author>0000 &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Tue, 25 Dec 2007 07:42:29 +0000</pubDate> 
<guid>http://zyan.cc/post/288/#blogcomment534</guid> 
<description>
<![CDATA[ 
	哪里有“不错”了……结果太少了，响应时间都没有
]]>
</description>
</item><item>
<link>http://zyan.cc/post/288/#blogcomment603</link>
<title><![CDATA[[评论] 找到一款不错的网站压力测试工具webbench[原创]]]></title> 
<author>sery &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Wed, 16 Jan 2008 07:17:43 +0000</pubDate> 
<guid>http://zyan.cc/post/288/#blogcomment603</guid> 
<description>
<![CDATA[ 
	我写了一篇nagios的文章,欢迎指导 <a href="http://sery.blog.51cto.com/10037/20520" target="_blank">http://sery.blog.51cto.com/10037/20520</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/288/#blogcomment734</link>
<title><![CDATA[[评论] 找到一款不错的网站压力测试工具webbench[原创]]]></title> 
<author>John &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 06 Mar 2008 06:55:13 +0000</pubDate> 
<guid>http://zyan.cc/post/288/#blogcomment734</guid> 
<description>
<![CDATA[ 
	Benchmarking: GET <a href="http://127.0.0.1/cacti" target="_blank">http://127.0.0.1/cacti</a><br/>500 clients, running 30 sec.<br/><br/>Speed=194948 pages/min, 1228185 bytes/sec.<br/>Requests: 97474 susceed, 0 failed.<br/><br/><br/>这个结果说明什么呢？能不能解释下，非常感谢！
]]>
</description>
</item><item>
<link>http://zyan.cc/post/288/#blogcomment809</link>
<title><![CDATA[[评论] 找到一款不错的网站压力测试工具webbench[原创]]]></title> 
<author>小虫 &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Wed, 19 Mar 2008 06:59:07 +0000</pubDate> 
<guid>http://zyan.cc/post/288/#blogcomment809</guid> 
<description>
<![CDATA[ 
	webbench -c 30000 -t 60 <a href="http://xxx" target="_blank">http://xxx</a><br/>好像很容易把自己打死啊，郁闷
]]>
</description>
</item><item>
<link>http://zyan.cc/post/288/#blogcomment2369</link>
<title><![CDATA[[评论] 找到一款不错的网站压力测试工具webbench[原创]]]></title> 
<author>你的微微笑 &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Sun, 04 Jan 2009 16:27:01 +0000</pubDate> 
<guid>http://zyan.cc/post/288/#blogcomment2369</guid> 
<description>
<![CDATA[ 
	貌似webbench不支持cookie，而且输出的测试结果太简单，功能过于简单了点，apache的ab功能比较多，可惜每次只能测试一个url，siege又只适合静态页面，如果能有一个把siege和ab的优点综合起来的东东完美了，继续寻找
]]>
</description>
</item><item>
<link>http://zyan.cc/post/288/#blogcomment3331</link>
<title><![CDATA[[评论] 找到一款不错的网站压力测试工具webbench[原创]]]></title> 
<author>评论 &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Fri, 22 May 2009 07:52:28 +0000</pubDate> 
<guid>http://zyan.cc/post/288/#blogcomment3331</guid> 
<description>
<![CDATA[ 
	咨询的人的素质有点低啊<br/>最基本的命令都不会
]]>
</description>
</item><item>
<link>http://zyan.cc/post/288/#blogcomment5230</link>
<title><![CDATA[[评论] 找到一款不错的网站压力测试工具webbench[原创]]]></title> 
<author>问道推广人 &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Sat, 13 Mar 2010 11:13:27 +0000</pubDate> 
<guid>http://zyan.cc/post/288/#blogcomment5230</guid> 
<description>
<![CDATA[ 
	试用了下，webbench这软件不错～
]]>
</description>
</item><item>
<link>http://zyan.cc/post/288/#blogcomment5520</link>
<title><![CDATA[[评论] 找到一款不错的网站压力测试工具webbench[原创]]]></title> 
<author>divfor &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Wed, 07 Apr 2010 03:13:10 +0000</pubDate> 
<guid>http://zyan.cc/post/288/#blogcomment5520</guid> 
<description>
<![CDATA[ 
	curl-loader基于libcurl功能比较全, SPECWeb99做基准测试被正式应用的比较多
]]>
</description>
</item><item>
<link>http://zyan.cc/post/288/#blogcomment5803</link>
<title><![CDATA[[评论] 找到一款不错的网站压力测试工具webbench[原创]]]></title> 
<author>lidu6 &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Mon, 03 May 2010 00:10:28 +0000</pubDate> 
<guid>http://zyan.cc/post/288/#blogcomment5803</guid> 
<description>
<![CDATA[ 
	好东西，得试试了
]]>
</description>
</item>
</channel>
</rss>