<?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>Comments on: 12 Months with MongoDB</title>
	<atom:link href="http://blog.wordnik.com/12-months-with-mongodb/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.wordnik.com/12-months-with-mongodb</link>
	<description>Connecting people with meaning.</description>
	<lastBuildDate>Wed, 09 May 2012 19:58:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Angela Tung</title>
		<link>http://blog.wordnik.com/12-months-with-mongodb/comment-page-1#comment-2330</link>
		<dc:creator>Angela Tung</dc:creator>
		<pubDate>Wed, 24 Aug 2011 17:59:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wordnik.com/?p=548#comment-2330</guid>
		<description>Yes, here it is: https://www.facebook.com/wordnik.fans</description>
		<content:encoded><![CDATA[<p>Yes, here it is: <a href="https://www.facebook.com/wordnik.fans" rel="nofollow">https://www.facebook.com/wordnik.fans</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Descargar</title>
		<link>http://blog.wordnik.com/12-months-with-mongodb/comment-page-1#comment-2328</link>
		<dc:creator>Descargar</dc:creator>
		<pubDate>Tue, 23 Aug 2011 18:43:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wordnik.com/?p=548#comment-2328</guid>
		<description>Hey, do you have a facebook fanpage?</description>
		<content:encoded><![CDATA[<p>Hey, do you have a facebook fanpage?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WP7 Resolution</title>
		<link>http://blog.wordnik.com/12-months-with-mongodb/comment-page-1#comment-2258</link>
		<dc:creator>WP7 Resolution</dc:creator>
		<pubDate>Tue, 02 Aug 2011 16:03:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wordnik.com/?p=548#comment-2258</guid>
		<description>I am really intrigued by mono DB now.</description>
		<content:encoded><![CDATA[<p>I am really intrigued by mono DB now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vermoid</title>
		<link>http://blog.wordnik.com/12-months-with-mongodb/comment-page-1#comment-2051</link>
		<dc:creator>vermoid</dc:creator>
		<pubDate>Fri, 22 Apr 2011 22:56:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wordnik.com/?p=548#comment-2051</guid>
		<description>Great numbers, thanks for publishing it. 
I had one question about data distribution. 
How were you sharding the data?</description>
		<content:encoded><![CDATA[<p>Great numbers, thanks for publishing it.<br />
I had one question about data distribution.<br />
How were you sharding the data?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: neo</title>
		<link>http://blog.wordnik.com/12-months-with-mongodb/comment-page-1#comment-1836</link>
		<dc:creator>neo</dc:creator>
		<pubDate>Fri, 12 Nov 2010 06:49:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wordnik.com/?p=548#comment-1836</guid>
		<description>i have the same one here did it mean thread</description>
		<content:encoded><![CDATA[<p>i have the same one here did it mean thread</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tonytam</title>
		<link>http://blog.wordnik.com/12-months-with-mongodb/comment-page-1#comment-1771</link>
		<dc:creator>tonytam</dc:creator>
		<pubDate>Tue, 02 Nov 2010 16:06:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wordnik.com/?p=548#comment-1771</guid>
		<description>@DC, no I meant separate VM instances, not threads.  Since we use the driver in the recommended manner (singleton), we wanted to benchmark the throughput without concerns of blocking in the driver.  I&#039;ll repost after I get a chance to rerun the benchmark with a multi-threaded client (same VM).</description>
		<content:encoded><![CDATA[<p>@DC, no I meant separate VM instances, not threads.  Since we use the driver in the recommended manner (singleton), we wanted to benchmark the throughput without concerns of blocking in the driver.  I&#8217;ll repost after I get a chance to rerun the benchmark with a multi-threaded client (same VM).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tonytam</title>
		<link>http://blog.wordnik.com/12-months-with-mongodb/comment-page-1#comment-1770</link>
		<dc:creator>tonytam</dc:creator>
		<pubDate>Tue, 02 Nov 2010 16:04:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wordnik.com/?p=548#comment-1770</guid>
		<description>@tommy, documents are pretty similar to what you see over our public api, with the exception of fields used for internal use.  Some of the doucments (dictionary model http://github.com/wordnik/api-examples/blob/master/docs/dictionary.xsd) has 6 levels of hierarchy (if I remember correctly).

Our web front end uses the same REST api as the public API, so yes, we consume JSON in the templating layer.  The mapping between JSON/XML in mongo and over the REST front end is done a couple different ways, via proprietary ODM.  In a couple cases we work against the DBObject structure sent by the java driver, in others we rely on Jackson (http://jackson.codehaus.org/) to convert MongoDB JSON into java objects.  We use two different mappers to give different behavior between the object annotations, which works out really well.</description>
		<content:encoded><![CDATA[<p>@tommy, documents are pretty similar to what you see over our public api, with the exception of fields used for internal use.  Some of the doucments (dictionary model <a href="http://github.com/wordnik/api-examples/blob/master/docs/dictionary.xsd" rel="nofollow">http://github.com/wordnik/api-examples/blob/master/docs/dictionary.xsd</a>) has 6 levels of hierarchy (if I remember correctly).</p>
<p>Our web front end uses the same REST api as the public API, so yes, we consume JSON in the templating layer.  The mapping between JSON/XML in mongo and over the REST front end is done a couple different ways, via proprietary ODM.  In a couple cases we work against the DBObject structure sent by the java driver, in others we rely on Jackson (<a href="http://jackson.codehaus.org/" rel="nofollow">http://jackson.codehaus.org/</a>) to convert MongoDB JSON into java objects.  We use two different mappers to give different behavior between the object annotations, which works out really well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DC</title>
		<link>http://blog.wordnik.com/12-months-with-mongodb/comment-page-1#comment-1763</link>
		<dc:creator>DC</dc:creator>
		<pubDate>Fri, 29 Oct 2010 13:52:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wordnik.com/?p=548#comment-1763</guid>
		<description>when you said java client, did you mean thread?</description>
		<content:encoded><![CDATA[<p>when you said java client, did you mean thread?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tommy</title>
		<link>http://blog.wordnik.com/12-months-with-mongodb/comment-page-1#comment-1761</link>
		<dc:creator>tommy</dc:creator>
		<pubDate>Wed, 27 Oct 2010 17:46:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wordnik.com/?p=548#comment-1761</guid>
		<description>Can you comment about your data modeling?

How many levels of embedded documents do you use?

On average, how large is a document in a collection?

Do you have to deal with de/serializing between your API and your web frontend?</description>
		<content:encoded><![CDATA[<p>Can you comment about your data modeling?</p>
<p>How many levels of embedded documents do you use?</p>
<p>On average, how large is a document in a collection?</p>
<p>Do you have to deal with de/serializing between your API and your web frontend?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tonytam</title>
		<link>http://blog.wordnik.com/12-months-with-mongodb/comment-page-1#comment-1756</link>
		<dc:creator>tonytam</dc:creator>
		<pubDate>Wed, 27 Oct 2010 03:24:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wordnik.com/?p=548#comment-1756</guid>
		<description>@Kamil, we store audio files of 50-250kb.  Got roughly 100k of them right now.  We haven&#039;t stressed that part of the system but we are gearing up for serving audio out to our API users, which will increase the traffic to the files substantially</description>
		<content:encoded><![CDATA[<p>@Kamil, we store audio files of 50-250kb.  Got roughly 100k of them right now.  We haven&#8217;t stressed that part of the system but we are gearing up for serving audio out to our API users, which will increase the traffic to the files substantially</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 1.130 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-05-16 09:33:53 -->

