<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	「几款代码编辑器的体验（最终Atom大法好）」的评论	</title>
	<atom:link href="https://hzy.pw/p/1890/feed" rel="self" type="application/rss+xml" />
	<link>https://hzy.pw/p/1890</link>
	<description>Here is my stage.</description>
	<lastBuildDate>Tue, 23 Feb 2016 04:55:24 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		评论者：战神丶辛		</title>
		<link>https://hzy.pw/p/1890/comment-page-3#comment-1032</link>

		<dc:creator><![CDATA[战神丶辛]]></dc:creator>
		<pubDate>Tue, 23 Feb 2016 04:55:24 +0000</pubDate>
		<guid isPermaLink="false">http://hzy.pw/?p=1890#comment-1032</guid>

					<description><![CDATA[倒腾了半天，乱了，没找到可以恢复默认设置的选项&lt;img src=&quot;http://img.t.sinajs.cn/t4/appstyle/expression/ext/normal/34/xiaoku_org.gif&quot;&gt;删了重装也一样]]></description>
			<content:encoded><![CDATA[<p>倒腾了半天，乱了，没找到可以恢复默认设置的选项<img src="http://img.t.sinajs.cn/t4/appstyle/expression/ext/normal/34/xiaoku_org.gif"/>删了重装也一样</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		评论者：Moshel		</title>
		<link>https://hzy.pw/p/1890/comment-page-2#comment-1027</link>

		<dc:creator><![CDATA[Moshel]]></dc:creator>
		<pubDate>Mon, 22 Feb 2016 21:35:33 +0000</pubDate>
		<guid isPermaLink="false">http://hzy.pw/?p=1890#comment-1027</guid>

					<description><![CDATA[回复@留美:phython这个假期我准备要去学一学]]></description>
			<content:encoded><![CDATA[<p>回复@留美:phython这个假期我准备要去学一学</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		评论者：Moshel		</title>
		<link>https://hzy.pw/p/1890/comment-page-2#comment-1026</link>

		<dc:creator><![CDATA[Moshel]]></dc:creator>
		<pubDate>Thu, 18 Feb 2016 14:47:28 +0000</pubDate>
		<guid isPermaLink="false">http://hzy.pw/?p=1890#comment-1026</guid>

					<description><![CDATA[回复@留美:php中如果用同样的参数第二次调用 mysql_connect()，将不会建立新连接，而将返回已经打开的连接标识。所以对于高并发的情况下，自然就变成长连接了，不过当所有脚本执行完后连接也会被关闭，如果想持久化，php专门提供了一个mysql_pconnect()]]></description>
			<content:encoded><![CDATA[<p>回复@留美:php中如果用同样的参数第二次调用 mysql_connect()，将不会建立新连接，而将返回已经打开的连接标识。所以对于高并发的情况下，自然就变成长连接了，不过当所有脚本执行完后连接也会被关闭，如果想持久化，php专门提供了一个mysql_pconnect()</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		评论者：留美		</title>
		<link>https://hzy.pw/p/1890/comment-page-2#comment-1025</link>

		<dc:creator><![CDATA[留美]]></dc:creator>
		<pubDate>Wed, 17 Feb 2016 14:50:31 +0000</pubDate>
		<guid isPermaLink="false">http://hzy.pw/?p=1890#comment-1025</guid>

					<description><![CDATA[回复@Mσѕнєℓ:还有一个关键问题，面向高并发的数据库连接问题，php的短连接方式会给数据库服务器造成不必要的运算开销，而php天生长连接的支持甚少，这就抑制了其在数据库连接池方面发展的建树，所以企业级的应用基本都跳转到了java或是python这种拥有数据库连接池完美支持的语言上去，对高并发用户数据请求进行处理，然而java虽然相比python运行效率较高，但其体系太过庞大代码臃肿，所以我一直推python]]></description>
			<content:encoded><![CDATA[<p>回复@Mσѕнєℓ:还有一个关键问题，面向高并发的数据库连接问题，php的短连接方式会给数据库服务器造成不必要的运算开销，而php天生长连接的支持甚少，这就抑制了其在数据库连接池方面发展的建树，所以企业级的应用基本都跳转到了java或是python这种拥有数据库连接池完美支持的语言上去，对高并发用户数据请求进行处理，然而java虽然相比python运行效率较高，但其体系太过庞大代码臃肿，所以我一直推python</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		评论者：留美		</title>
		<link>https://hzy.pw/p/1890/comment-page-2#comment-1024</link>

		<dc:creator><![CDATA[留美]]></dc:creator>
		<pubDate>Fri, 12 Feb 2016 12:59:26 +0000</pubDate>
		<guid isPermaLink="false">http://hzy.pw/?p=1890#comment-1024</guid>

					<description><![CDATA[回复@Mσѕнєℓ:这其实和我那个大话数据库ppt的最后一小节是一个东西，刚才看到你截图里拼接的sql，才发现你还不知道这个]]></description>
			<content:encoded><![CDATA[<p>回复@Mσѕнєℓ:这其实和我那个大话数据库ppt的最后一小节是一个东西，刚才看到你截图里拼接的sql，才发现你还不知道这个</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		评论者：Moshel		</title>
		<link>https://hzy.pw/p/1890/comment-page-2#comment-1023</link>

		<dc:creator><![CDATA[Moshel]]></dc:creator>
		<pubDate>Sun, 07 Feb 2016 18:13:36 +0000</pubDate>
		<guid isPermaLink="false">http://hzy.pw/?p=1890#comment-1023</guid>

					<description><![CDATA[回复@留美:居然还有这种神器，收藏了！之前写php时还自己写了几个表和数组相互转换的函数，没想到都还有现成的类了 ⊙▽⊙]]></description>
			<content:encoded><![CDATA[<p>回复@留美:居然还有这种神器，收藏了！之前写php时还自己写了几个表和数组相互转换的函数，没想到都还有现成的类了 ⊙▽⊙</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		评论者：留美		</title>
		<link>https://hzy.pw/p/1890/comment-page-2#comment-1022</link>

		<dc:creator><![CDATA[留美]]></dc:creator>
		<pubDate>Thu, 04 Feb 2016 21:43:27 +0000</pubDate>
		<guid isPermaLink="false">http://hzy.pw/?p=1890#comment-1022</guid>

					<description><![CDATA[PHP的orm你了解过吗&lt;a href=&quot;http://www.nowamagic.net/librarys/veda/detail/2169&quot; rel=&quot;nofollow&quot;&gt;http://www.nowamagic.net/librarys/veda/detail/2169&lt;/a&gt;]]></description>
			<content:encoded><![CDATA[<p>PHP的orm你了解过吗<a href="http://www.nowamagic.net/librarys/veda/detail/2169" rel="nofollow">http://www.nowamagic.net/librarys/veda/detail/2169</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		评论者：Moshel		</title>
		<link>https://hzy.pw/p/1890/comment-page-2#comment-1021</link>

		<dc:creator><![CDATA[Moshel]]></dc:creator>
		<pubDate>Sat, 30 Jan 2016 13:59:09 +0000</pubDate>
		<guid isPermaLink="false">http://hzy.pw/?p=1890#comment-1021</guid>

					<description><![CDATA[回复@留美:对，现在后悔没早点用到这些工具]]></description>
			<content:encoded><![CDATA[<p>回复@留美:对，现在后悔没早点用到这些工具</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		评论者：留美		</title>
		<link>https://hzy.pw/p/1890/comment-page-1#comment-1020</link>

		<dc:creator><![CDATA[留美]]></dc:creator>
		<pubDate>Sun, 17 Jan 2016 03:44:02 +0000</pubDate>
		<guid isPermaLink="false">http://hzy.pw/?p=1890#comment-1020</guid>

					<description><![CDATA[有些东西确实需要尝试才知道好处]]></description>
			<content:encoded><![CDATA[<p>有些东西确实需要尝试才知道好处</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		评论者：米多		</title>
		<link>https://hzy.pw/p/1890/comment-page-1#comment-1018</link>

		<dc:creator><![CDATA[米多]]></dc:creator>
		<pubDate>Fri, 15 Jan 2016 21:30:39 +0000</pubDate>
		<guid isPermaLink="false">http://hzy.pw/?p=1890#comment-1018</guid>

					<description><![CDATA[不明觉历]]></description>
			<content:encoded><![CDATA[<p>不明觉历</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		评论者：陈翰林		</title>
		<link>https://hzy.pw/p/1890/comment-page-1#comment-1010</link>

		<dc:creator><![CDATA[陈翰林]]></dc:creator>
		<pubDate>Thu, 14 Jan 2016 05:15:54 +0000</pubDate>
		<guid isPermaLink="false">http://hzy.pw/?p=1890#comment-1010</guid>

					<description><![CDATA[用 visualstudio]]></description>
			<content:encoded><![CDATA[<p>用 visualstudio</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		评论者：弋阳培林		</title>
		<link>https://hzy.pw/p/1890/comment-page-1#comment-1009</link>

		<dc:creator><![CDATA[弋阳培林]]></dc:creator>
		<pubDate>Wed, 13 Jan 2016 02:46:06 +0000</pubDate>
		<guid isPermaLink="false">http://hzy.pw/?p=1890#comment-1009</guid>

					<description><![CDATA[我之前交web作业就该找你&lt;img src=&quot;http://os.qzonestyle.gtimg.cn/qzone/em/e400867.gif&quot;&gt;]]></description>
			<content:encoded><![CDATA[<p>我之前交web作业就该找你<img src="http://os.qzonestyle.gtimg.cn/qzone/em/e400867.gif"/></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		评论者：郑一航		</title>
		<link>https://hzy.pw/p/1890/comment-page-1#comment-1003</link>

		<dc:creator><![CDATA[郑一航]]></dc:creator>
		<pubDate>Tue, 12 Jan 2016 23:41:05 +0000</pubDate>
		<guid isPermaLink="false">http://hzy.pw/?p=1890#comment-1003</guid>

					<description><![CDATA[你现在能开发什么样的程序咯？]]></description>
			<content:encoded><![CDATA[<p>你现在能开发什么样的程序咯？</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		评论者：兰蔻蔻		</title>
		<link>https://hzy.pw/p/1890/comment-page-1#comment-1001</link>

		<dc:creator><![CDATA[兰蔻蔻]]></dc:creator>
		<pubDate>Wed, 06 Jan 2016 20:03:35 +0000</pubDate>
		<guid isPermaLink="false">http://hzy.pw/?p=1890#comment-1001</guid>

					<description><![CDATA[表示只用nodeped]]></description>
			<content:encoded><![CDATA[<p>表示只用nodeped</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		评论者：nohteeg		</title>
		<link>https://hzy.pw/p/1890/comment-page-1#comment-997</link>

		<dc:creator><![CDATA[nohteeg]]></dc:creator>
		<pubDate>Mon, 04 Jan 2016 15:46:32 +0000</pubDate>
		<guid isPermaLink="false">http://hzy.pw/?p=1890#comment-997</guid>

					<description><![CDATA[activate-power-mode 这个以前见过、简直是6]]></description>
			<content:encoded><![CDATA[<p>activate-power-mode 这个以前见过、简直是6</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

使用页面缓存Disk: Enhanced 
数据库缓存8/40查询，在0.030秒内使用Disk

Served from: hzy.pw @ 2026-04-26 22:21:23 by W3 Total Cache
-->