<?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/nginx_php_v6/</link>
<title><![CDATA[Nginx 0.8.x + PHP 5.2.13（FastCGI）搭建胜过Apache十倍的Web服务器（第6版）[原创]]]></title> 
<author>张宴 &lt;net@s135.com&gt;</author>
<category><![CDATA[Web服务器]]></category>
<pubDate>Thu, 04 Mar 2010 12:10:10 +0000</pubDate> 
<guid>http://zyan.cc/nginx_php_v6/</guid> 
<description>
<![CDATA[ 
	　　[文章作者：张宴 本文版本：v6.3 最后修改：<span style="color: #FF0000;">2010.07.26</span> 转载请注明原文链接：<a href="http://blog.zyan.cc/nginx_php_v6/" target="_blank">http://blog.zyan.cc/nginx_php_v6/</a>]<br/><br/>　　前言：本文是我撰写的关于搭建“Nginx + PHP（FastCGI）”Web服务器的第6篇文章。本系列文章作为国内最早详细介绍 Nginx + PHP 安装、配置、使用的资料之一，为推动 Nginx 在国内的发展产生了积极的作用。本文可能不断更新小版本，请记住原文链接“<a href="http://blog.zyan.cc/nginx_php_v6/" target="_blank">http://blog.zyan.cc/nginx_php_v6/</a>”，获取最新内容。第6篇文章主要介绍了Nginx 0.8.x新的平滑重启方式，将PHP升级到了5.2.14，修正了PEAR问题。另将MySQL 5.1.x升级到了5.5.x系列，配置文件变更较大。<br/><br/>　　链接：《<a href="post/297/" target="_blank">2007年9月的第1版</a>》、《<a href="post/314/" target="_blank">2007年12月的第2版</a>》、《<a href="post/351/" target="_blank">2008年6月的第3版</a>》、《<a href="nginx_php_v4/" target="_blank">2008年8月的第4版</a>》、《<a href="nginx_php_v5/" target="_blank">2009年5月的第5版</a>》<br/><br/>　　<a href="http://zyan.cc/attachment/200806/nginx.png" target="_blank"><img src="http://zyan.cc/attachment/200806/nginx.png" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><br/>　　<a href="http://www.nginx.net/" target="_blank">Nginx</a> ("engine x") 是一个高性能的 HTTP 和反向代理服务器，也是一个 IMAP/POP3/SMTP 代理服务器。 Nginx 是由 Igor Sysoev 为俄罗斯访问量第二的 Rambler.ru 站点开发的，它已经在该站点运行超过三年了。Igor 将源代码以类BSD许可证的形式发布。<br/><br/>　　Nginx 超越 Apache 的高性能和稳定性，使得国内使用 Nginx 作为 Web 服务器的网站也越来越多，其中包括<a href="http://blog.sina.com.cn/" target="_blank">新浪博客</a>、<a href="http://v.sina.com.cn/" target="_blank">新浪播客</a>、<a href="http://news.163.com/" target="_blank">网易新闻</a>、<a href="http://www.qq.com/" target="_blank">腾讯网</a>、<a href="http://blog.sohu.com/" target="_blank">搜狐博客</a>等门户网站频道，<a href="http://www.6.cn/" target="_blank">六间房</a>、<a href="http://www.56.com/" target="_blank">56.com</a>等视频分享网站，<a href="http://www.discuz.net/" target="_blank">Discuz!官方论坛</a>、<a href="http://www.newsmth.net/" target="_blank">水木社区</a>等知名论坛，<a href="http://www.sdo.com/" target="_blank">盛大在线</a>、<a href="http://www.xoyo.com/" target="_blank">金山逍遥网</a>等网络游戏网站，<a href="http://www.douban.com/" target="_blank">豆瓣</a>、<a href="http://www.renren.com/" target="_blank">人人网</a>、<a href="http://www.yupoo.com/" target="_blank">YUPOO相册</a>、<a href="http://www.iciba.com/" target="_blank">金山爱词霸</a>、<a href="http://www.xunlei.com/" target="_blank">迅雷在线</a>等新兴Web 2.0网站。<br/><br/><hr/><br/>　　Nginx 的官方中文维基：<a href="http://wiki.nginx.org/NginxChs" target="_blank">http://wiki.nginx.org/NginxChs</a><br/><br/><hr/><br/>　　在高并发连接的情况下，Nginx是Apache服务器不错的替代品。Nginx同时也可以作为7层负载均衡服务器来使用。根据我的测试结果，<strong>Nginx 0.8.46 + PHP 5.2.14 (FastCGI) 可以承受3万以上的并发连接数，相当于同等环境下Apache的10倍</strong>。<br/><br/>　　根据我的经验，4GB内存的服务器+Apache（prefork模式）一般只能处理3000个并发连接，因为它们将占用3GB以上的内存，还得为系统预留1GB的内存。我曾经就有两台Apache服务器，因为在配置文件中设置的MaxClients为4000，当Apache并发连接数达到3800时，导致服务器内存和Swap空间用满而崩溃。<br/><br/>　　而这台 Nginx 0.8.46 + PHP 5.2.14 (FastCGI) 服务器在3万并发连接下，开启的10个Nginx进程消耗150M内存（15M*10=150M），开启的64个php-cgi进程消耗1280M内存（20M*64=1280M），加上系统自身消耗的内存，总共消耗不到2GB内存。如果服务器内存较小，完全可以只开启25个php-cgi进程，这样php-cgi消耗的总内存数才500M。<br/><br/>　　在3万并发连接下，访问Nginx 0.8.46 + PHP 5.2.14 (FastCGI) 服务器的PHP程序，仍然速度飞快。下图为Nginx的状态监控页面，显示的活动连接数为28457（关于Nginx的监控页配置，会在本文接下来所给出的Nginx配置文件中写明）：<br/><br/>　　<a href="http://zyan.cc/attachment/200712/nginx_status.png" target="_blank"><img src="http://zyan.cc/attachment/200712/nginx_status.png" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><br/>　　我生产环境下的两台Nginx + PHP5（FastCGI）服务器，跑多个一般复杂的纯PHP动态程序，单台Nginx + PHP5（FastCGI）服务器跑PHP动态程序的处理能力已经超过“<span style="color: #FF0000;">700次请求/秒</span>”，相当于每天可以承受6000万（700*60*60*24=60480000）的访问量（<a href="read.php/334.htm" target="_blank">更多信息见此</a>），而服务器的系统负载也不高：<br/><br/>　　<a href="http://zyan.cc/attachment/200803/nginx_php_la.gif" target="_blank"><img src="http://zyan.cc/attachment/200803/nginx_php_la.gif" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><br/>　　2009年9月3日下午2：30，金山游戏《剑侠情缘网络版叁》临时维护1小时（<a href="http://kefu.xoyo.com/gonggao/jx3/2009-09-03/750438.shtml" target="_blank">http://kefu.xoyo.com/gonggao/jx3/2009-09-03/750438.shtml</a>），大量玩家上官网，论坛、评论、客服等动态应用Nginx服务器集群，每台服务器的Nginx活动连接数达到2.8万，这是笔者遇到的Nginx生产环境最高并发值。<br/><br/>　　<a href="http://zyan.cc/attachment/200909/nginx_c30k.png" target="_blank"><img src="http://zyan.cc/attachment/200909/nginx_c30k.png" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><br/><hr/><br/>　　下面是用100个并发连接分别去压生产环境中同一负载均衡器VIP下、提供相同服务的两台服务器，一台为Nginx，另一台为Apache，Nginx每秒处理的请求数是Apache的两倍多，Nginx服务器的系统负载、CPU使用率远低于Apache：<br/><br/>　　你可以将连接数开到10000～30000，去压Nginx和Apache上的phpinfo.php，这是用浏览器访问Nginx上的phpinfo.php一切正常，而访问Apache服务器的phpinfo.php，则是该页无法显示。4G内存的服务器，即使再优化，Apache也很难在“webbench -c 30000 -t 60 <a href="http://xxx.xxx.xxx.xxx/phpinfo.php" target="_blank">http://xxx.xxx.xxx.xxx/phpinfo.php</a>”的压力情况下正常访问，而调整参数优化后的Nginx可以。<br/><br/>　　webbench 下载地址：<a href="http://blog.zyan.cc/post/288/" target="_blank">http://blog.zyan.cc/post/288/</a><br/><br/>　　注意：webbench 做压力测试时，该软件自身也会消耗CPU和内存资源，为了测试准确，请将 webbench 安装在别的服务器上。<br/><br/>　　测试结果：##### Nginx + PHP #####<br/><div class="quote"><div class="quote-title">引用</div><div class="quote-content">[root@localhost webbench-1.5]# webbench -c 100 -t 30 <a href="http://192.168.1.21/phpinfo.php" target="_blank">http://192.168.1.21/phpinfo.php</a><br/>Webbench - Simple Web Benchmark 1.5<br/>Copyright (c) Radim Kolar 1997-2004, GPL Open Source Software.<br/><br/>Benchmarking: GET <a href="http://192.168.1.21/phpinfo.php" target="_blank">http://192.168.1.21/phpinfo.php</a><br/>100 clients, running 30 sec.<br/><br/>Speed=102450 pages/min, 16490596 bytes/sec.<br/>Requests: 51225 susceed, 0 failed.<br/><br/>top - 14:06:13 up 27 days,&nbsp;&nbsp;2:25,&nbsp;&nbsp;2 users,&nbsp;&nbsp;load average: 14.57, 9.89, 6.51<br/>Tasks: 287 total,&nbsp;&nbsp; 4 running, 283 sleeping,&nbsp;&nbsp; 0 stopped,&nbsp;&nbsp; 0 zombie<br/>Cpu(s): 49.9% us,&nbsp;&nbsp;6.7% sy,&nbsp;&nbsp;0.0% ni, 41.4% id,&nbsp;&nbsp;1.1% wa,&nbsp;&nbsp;0.1% hi,&nbsp;&nbsp;0.8% si<br/>Mem:&nbsp;&nbsp; 6230016k total,&nbsp;&nbsp;2959468k used,&nbsp;&nbsp;3270548k free,&nbsp;&nbsp; 635992k buffers<br/>Swap:&nbsp;&nbsp;2031608k total,&nbsp;&nbsp;&nbsp;&nbsp; 3696k used,&nbsp;&nbsp;2027912k free,&nbsp;&nbsp;1231444k cached</div></div><br/><br/>　　测试结果：#####&nbsp;&nbsp;Apache + PHP #####<br/><div class="quote"><div class="quote-title">引用</div><div class="quote-content">[root@localhost webbench-1.5]# webbench -c 100 -t 30 <a href="http://192.168.1.27/phpinfo.php" target="_blank">http://192.168.1.27/phpinfo.php</a><br/>Webbench - Simple Web Benchmark 1.5<br/>Copyright (c) Radim Kolar 1997-2004, GPL Open Source Software.<br/><br/>Benchmarking: GET <a href="http://192.168.1.27/phpinfo.php" target="_blank">http://192.168.1.27/phpinfo.php</a><br/>100 clients, running 30 sec.<br/><br/>Speed=42184 pages/min, 31512914 bytes/sec.<br/>Requests: 21092 susceed, 0 failed.<br/><br/>top - 14:06:20 up 27 days,&nbsp;&nbsp;2:13,&nbsp;&nbsp;2 users,&nbsp;&nbsp;load average: 62.15, 26.36, 13.42<br/>Tasks: 318 total,&nbsp;&nbsp; 7 running, 310 sleeping,&nbsp;&nbsp; 0 stopped,&nbsp;&nbsp; 1 zombie<br/>Cpu(s): 80.4% us, 10.6% sy,&nbsp;&nbsp;0.0% ni,&nbsp;&nbsp;7.9% id,&nbsp;&nbsp;0.1% wa,&nbsp;&nbsp;0.1% hi,&nbsp;&nbsp;0.9% si<br/>Mem:&nbsp;&nbsp; 6230016k total,&nbsp;&nbsp;3075948k used,&nbsp;&nbsp;3154068k free,&nbsp;&nbsp; 379896k buffers<br/>Swap:&nbsp;&nbsp;2031608k total,&nbsp;&nbsp;&nbsp;&nbsp;12592k used,&nbsp;&nbsp;2019016k free,&nbsp;&nbsp;1117868k cached</div></div><br/><br/><hr/><br/>　　为什么Nginx的性能要比Apache高得多？这得益于Nginx使用了最新的epoll（Linux 2.6内核）和kqueue（freebsd）网络I/O模型，而Apache则使用的是传统的select模型。目前Linux下能够承受高并发访问的Squid、Memcached都采用的是epoll网络I/O模型。<br/><br/>　　处理大量的连接的读写，Apache所采用的select网络I/O模型非常低效。下面用一个比喻来解析Apache采用的select模型和Nginx采用的epoll模型进行之间的区别：<br/><br/>　　假设你在大学读书，住的宿舍楼有很多间房间，你的朋友要来找你。select版宿管大妈就会带着你的朋友挨个房间去找，直到找到你为止。而epoll版宿管大妈会先记下每位同学的房间号，你的朋友来时，只需告诉你的朋友你住在哪个房间即可，不用亲自带着你的朋友满大楼找人。如果来了10000个人，都要找自己住这栋楼的同学时，select版和epoll版宿管大妈，谁的效率更高，不言自明。同理，在高并发服务器中，轮询I/O是最耗时间的操作之一，select和epoll的性能谁的性能更高，同样十分明了。<br/><br/><hr/><br/>　　安装步骤：<br/>　　（系统要求：Linux 2.6+ 内核，本文中的Linux操作系统为CentOS 5.3，另在RedHat AS4上也安装成功）<br/><br/>............<br/><br/>Tags - <a href="http://zyan.cc/tags/nginx/" rel="tag">nginx</a> , <a href="http://zyan.cc/tags/php/" rel="tag">php</a> , <a href="http://zyan.cc/tags/mysql/" rel="tag">mysql</a> , <a href="http://zyan.cc/tags/linux/" rel="tag">linux</a> , <a href="http://zyan.cc/tags/apache/" rel="tag">apache</a> , <a href="http://zyan.cc/tags/html/" rel="tag">html</a> , <a href="http://zyan.cc/tags/centos/" rel="tag">centos</a> , <a href="http://zyan.cc/tags/http/" rel="tag">http</a> , <a href="http://zyan.cc/tags/apc/" rel="tag">apc</a> , <a href="http://zyan.cc/tags/xcache/" rel="tag">xcache</a> , <a href="http://zyan.cc/tags/memcached/" rel="tag">memcached</a> , <a href="http://zyan.cc/tags/httpd/" rel="tag">httpd</a> , <a href="http://zyan.cc/tags/memcache/" rel="tag">memcache</a> , <a href="http://zyan.cc/tags/epoll/" rel="tag">epoll</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/nginx_php_v6/#blogcomment5094</link>
<title><![CDATA[[评论] Nginx 0.8.x + PHP 5.2.13（FastCGI）搭建胜过Apache十倍的Web服务器（第6版）[原创]]]></title> 
<author>Cat. &lt;shinko168@gmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 04 Mar 2010 12:51:08 +0000</pubDate> 
<guid>http://zyan.cc/nginx_php_v6/#blogcomment5094</guid> 
<description>
<![CDATA[ 
	沙发先...<br/>可以看看这个<br/><a href="http://imcat.in/teach-you-step-by-step-install-nginx-php-mysql/" target="_blank">http://imcat.in/teach-you-step-by-step-install-nginx-php-mysql/</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/nginx_php_v6/#blogcomment5095</link>
<title><![CDATA[[评论] Nginx 0.8.x + PHP 5.2.13（FastCGI）搭建胜过Apache十倍的Web服务器（第6版）[原创]]]></title> 
<author>VPN &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 04 Mar 2010 12:54:11 +0000</pubDate> 
<guid>http://zyan.cc/nginx_php_v6/#blogcomment5095</guid> 
<description>
<![CDATA[ 
	不错，第6版了
]]>
</description>
</item><item>
<link>http://zyan.cc/nginx_php_v6/#blogcomment5096</link>
<title><![CDATA[[评论] Nginx 0.8.x + PHP 5.2.13（FastCGI）搭建胜过Apache十倍的Web服务器（第6版）[原创]]]></title> 
<author>axengine &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 04 Mar 2010 13:18:13 +0000</pubDate> 
<guid>http://zyan.cc/nginx_php_v6/#blogcomment5096</guid> 
<description>
<![CDATA[ 
	so fun 先看看
]]>
</description>
</item><item>
<link>http://zyan.cc/nginx_php_v6/#blogcomment5097</link>
<title><![CDATA[[评论] Nginx 0.8.x + PHP 5.2.13（FastCGI）搭建胜过Apache十倍的Web服务器（第6版）[原创]]]></title> 
<author>苦咖啡 &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 04 Mar 2010 13:24:45 +0000</pubDate> 
<guid>http://zyan.cc/nginx_php_v6/#blogcomment5097</guid> 
<description>
<![CDATA[ 
	文章是很不错，常看
]]>
</description>
</item><item>
<link>http://zyan.cc/nginx_php_v6/#blogcomment5098</link>
<title><![CDATA[[评论] Nginx 0.8.x + PHP 5.2.13（FastCGI）搭建胜过Apache十倍的Web服务器（第6版）[原创]]]></title> 
<author>Black-Xstar &lt;billzhong@gmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 04 Mar 2010 13:31:50 +0000</pubDate> 
<guid>http://zyan.cc/nginx_php_v6/#blogcomment5098</guid> 
<description>
<![CDATA[ 
	要是有change log就好了。
]]>
</description>
</item><item>
<link>http://zyan.cc/nginx_php_v6/#blogcomment5099</link>
<title><![CDATA[[评论] Nginx 0.8.x + PHP 5.2.13（FastCGI）搭建胜过Apache十倍的Web服务器（第6版）[原创]]]></title> 
<author>FFCZ &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 04 Mar 2010 14:23:16 +0000</pubDate> 
<guid>http://zyan.cc/nginx_php_v6/#blogcomment5099</guid> 
<description>
<![CDATA[ 
	不怎么敢用mysql5.5版本，再等等。是否考虑在/etc/rc.local加入mysql start
]]>
</description>
</item><item>
<link>http://zyan.cc/nginx_php_v6/#blogcomment5101</link>
<title><![CDATA[[评论] Nginx 0.8.x + PHP 5.2.13（FastCGI）搭建胜过Apache十倍的Web服务器（第6版）[原创]]]></title> 
<author>alect &lt;alect@lovefall.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 04 Mar 2010 14:35:42 +0000</pubDate> 
<guid>http://zyan.cc/nginx_php_v6/#blogcomment5101</guid> 
<description>
<![CDATA[ 
	建议把mysql的下载地址不使用sohu的镜像，速度超慢……
]]>
</description>
</item><item>
<link>http://zyan.cc/nginx_php_v6/#blogcomment5102</link>
<title><![CDATA[[评论] Nginx 0.8.x + PHP 5.2.13（FastCGI）搭建胜过Apache十倍的Web服务器（第6版）[原创]]]></title> 
<author>joseph &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 04 Mar 2010 15:16:12 +0000</pubDate> 
<guid>http://zyan.cc/nginx_php_v6/#blogcomment5102</guid> 
<description>
<![CDATA[ 
	阅了
]]>
</description>
</item><item>
<link>http://zyan.cc/nginx_php_v6/#blogcomment5103</link>
<title><![CDATA[[评论] Nginx 0.8.x + PHP 5.2.13（FastCGI）搭建胜过Apache十倍的Web服务器（第6版）[原创]]]></title> 
<author>网络旺旺 &lt;wangluowangwang@ich8.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 04 Mar 2010 15:16:39 +0000</pubDate> 
<guid>http://zyan.cc/nginx_php_v6/#blogcomment5103</guid> 
<description>
<![CDATA[ 
	有幸在第一页。eaccelerator感觉还是有些兼容问题？
]]>
</description>
</item><item>
<link>http://zyan.cc/nginx_php_v6/#blogcomment5104</link>
<title><![CDATA[[评论] Nginx 0.8.x + PHP 5.2.13（FastCGI）搭建胜过Apache十倍的Web服务器（第6版）[原创]]]></title> 
<author>大碗茶 &lt;sucrede@gmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 04 Mar 2010 16:36:15 +0000</pubDate> 
<guid>http://zyan.cc/nginx_php_v6/#blogcomment5104</guid> 
<description>
<![CDATA[ 
	sphinx 0.9.9 不支持 mysql 5.5？
]]>
</description>
</item><item>
<link>http://zyan.cc/nginx_php_v6/#blogcomment5105</link>
<title><![CDATA[[评论] Nginx 0.8.x + PHP 5.2.13（FastCGI）搭建胜过Apache十倍的Web服务器（第6版）[原创]]]></title> 
<author>matrix &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 04 Mar 2010 20:21:00 +0000</pubDate> 
<guid>http://zyan.cc/nginx_php_v6/#blogcomment5105</guid> 
<description>
<![CDATA[ 
	关注
]]>
</description>
</item><item>
<link>http://zyan.cc/nginx_php_v6/#blogcomment5106</link>
<title><![CDATA[[评论] Nginx 0.8.x + PHP 5.2.13（FastCGI）搭建胜过Apache十倍的Web服务器（第6版）[原创]]]></title> 
<author>zjsz007 &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 04 Mar 2010 20:36:25 +0000</pubDate> 
<guid>http://zyan.cc/nginx_php_v6/#blogcomment5106</guid> 
<description>
<![CDATA[ 
	留下记忆的脚印<br/>支持Nginx
]]>
</description>
</item><item>
<link>http://zyan.cc/nginx_php_v6/#blogcomment5108</link>
<title><![CDATA[[评论] Nginx 0.8.x + PHP 5.2.13（FastCGI）搭建胜过Apache十倍的Web服务器（第6版）[原创]]]></title> 
<author>phoebus &lt;zfhmail@gamil.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Fri, 05 Mar 2010 00:29:05 +0000</pubDate> 
<guid>http://zyan.cc/nginx_php_v6/#blogcomment5108</guid> 
<description>
<![CDATA[ 
	我3号按第五版刚刚配置好。。。。杯具啊！！<br/>马上重来，谢谢张老师的教程。
]]>
</description>
</item><item>
<link>http://zyan.cc/nginx_php_v6/#blogcomment5109</link>
<title><![CDATA[[评论] Nginx 0.8.x + PHP 5.2.13（FastCGI）搭建胜过Apache十倍的Web服务器（第6版）[原创]]]></title> 
<author>hsg4ok &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Fri, 05 Mar 2010 01:18:03 +0000</pubDate> 
<guid>http://zyan.cc/nginx_php_v6/#blogcomment5109</guid> 
<description>
<![CDATA[ 
	高含金量！！！！
]]>
</description>
</item><item>
<link>http://zyan.cc/nginx_php_v6/#blogcomment5110</link>
<title><![CDATA[[评论] Nginx 0.8.x + PHP 5.2.13（FastCGI）搭建胜过Apache十倍的Web服务器（第6版）[原创]]]></title> 
<author>freeke &lt;myfreeke@gmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Fri, 05 Mar 2010 01:18:49 +0000</pubDate> 
<guid>http://zyan.cc/nginx_php_v6/#blogcomment5110</guid> 
<description>
<![CDATA[ 
	建议博主做成PDF版本,方便爱好者提供下载
]]>
</description>
</item>
</channel>
</rss>