<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:media="http://search.yahoo.com/mrss/"
	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>
	Comments on: MongoDB入门，含分布式配置	</title>
	<atom:link href="https://www.coder4.com/archives/1515/feed" rel="self" type="application/rss+xml" />
	<link>https://www.coder4.com/archives/1515</link>
	<description>Keep It Simple and Stupid</description>
	<lastBuildDate>Fri, 21 Oct 2011 07:42:50 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>
	<item>
		<title>
		By: omar		</title>
		<link>https://www.coder4.com/archives/1515#comment-238</link>

		<dc:creator><![CDATA[omar]]></dc:creator>
		<pubDate>Fri, 13 May 2011 04:34:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.coder4.com/?p=1515#comment-238</guid>

					<description><![CDATA[谢谢回复。
我是简单的测试，使用jdbc连mysql，然后用mongo的驱动连mongo，然后对几万条数据进行读取，简单比对了时间使用。
我通常是mysql负责存储，memcached负责缓存，数据过大之后将其分布式配置。
所以不太了解monogo的优势。]]></description>
			<content:encoded><![CDATA[<p>谢谢回复。<br />
我是简单的测试，使用jdbc连mysql，然后用mongo的驱动连mongo，然后对几万条数据进行读取，简单比对了时间使用。<br />
我通常是mysql负责存储，memcached负责缓存，数据过大之后将其分布式配置。<br />
所以不太了解monogo的优势。</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: coder4		</title>
		<link>https://www.coder4.com/archives/1515#comment-225</link>

		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Mon, 09 May 2011 06:14:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.coder4.com/?p=1515#comment-225</guid>

					<description><![CDATA[@omar: 内存不够的时候，MongoDB性能会下降很快，毕竟他是内存数据库，性能的提升都是靠存在内存中（定期dump到硬盘持久化）获得的。Mongo很吃内存的，一般100w个记录(每个记录1k)就能搞到500MB了。]]></description>
			<content:encoded><![CDATA[<p>@omar: 内存不够的时候，MongoDB性能会下降很快，毕竟他是内存数据库，性能的提升都是靠存在内存中（定期dump到硬盘持久化）获得的。Mongo很吃内存的，一般100w个记录(每个记录1k)就能搞到500MB了。</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: coder4		</title>
		<link>https://www.coder4.com/archives/1515#comment-224</link>

		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Mon, 09 May 2011 06:12:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.coder4.com/?p=1515#comment-224</guid>

					<description><![CDATA[@omar: 	
你的数据规模又多大？多少个字段，多少记录？
首先，有很多参数需要调优，这个我还没有做过。
MongoDB的Replication和Shard主要解决两个问题：
1、横向拓展问题，比如现在速度课接受，但数据大了后怎么办？一种选则是换更NB的机器，第二种就是两台机器一起跑。MongoDB就是第2种，可拓展行较好。
2、读密集写不密集情况。即单点写入，多点读出可大大缓解读取压力，提升系统性能。而很多系统中，确实写的很少。当然代价就是不同步。
你确定你的机器内存够么？
你不会是在vps上什么的跑吧？我自己测试，最慢每秒写都可达到10000/秒，比mysql好很多了。]]></description>
			<content:encoded><![CDATA[<p>@omar:<br />
你的数据规模又多大？多少个字段，多少记录？<br />
首先，有很多参数需要调优，这个我还没有做过。<br />
MongoDB的Replication和Shard主要解决两个问题：<br />
1、横向拓展问题，比如现在速度课接受，但数据大了后怎么办？一种选则是换更NB的机器，第二种就是两台机器一起跑。MongoDB就是第2种，可拓展行较好。<br />
2、读密集写不密集情况。即单点写入，多点读出可大大缓解读取压力，提升系统性能。而很多系统中，确实写的很少。当然代价就是不同步。<br />
你确定你的机器内存够么？<br />
你不会是在vps上什么的跑吧？我自己测试，最慢每秒写都可达到10000/秒，比mysql好很多了。</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: omar		</title>
		<link>https://www.coder4.com/archives/1515#comment-222</link>

		<dc:creator><![CDATA[omar]]></dc:creator>
		<pubDate>Mon, 09 May 2011 06:01:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.coder4.com/?p=1515#comment-222</guid>

					<description><![CDATA[你好，能简单说说为什么配它的分布式而不是它速度不如mysql呢？我自己测的速度不如mysql…当然安装等等确实方便了很多…简单交流下]]></description>
			<content:encoded><![CDATA[<p>你好，能简单说说为什么配它的分布式而不是它速度不如mysql呢？我自己测的速度不如mysql…当然安装等等确实方便了很多…简单交流下</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
