<?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: The Holy Grail of the Funky Data Model</title>
	<atom:link href="http://www.theotherblog.com/Articles/2009/06/02/the-holy-grail-of-the-funky-data-model/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.theotherblog.com/Articles/2009/06/02/the-holy-grail-of-the-funky-data-model/</link>
	<description>Usability, IA, UX and Design</description>
	<lastBuildDate>Wed, 01 Feb 2012 14:41:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: dm</title>
		<link>http://www.theotherblog.com/Articles/2009/06/02/the-holy-grail-of-the-funky-data-model/comment-page-1/#comment-53222</link>
		<dc:creator>dm</dc:creator>
		<pubDate>Tue, 11 Aug 2009 18:11:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.theotherblog.com/?p=4882#comment-53222</guid>
		<description>see also http://jayant7k.blogspot.com/2009/08/document-oriented-data-stores.html</description>
		<content:encoded><![CDATA[<p>see also <a href="http://jayant7k.blogspot.com/2009/08/document-oriented-data-stores.html" rel="nofollow">http://jayant7k.blogspot.com/2009/08/document-oriented-data-stores.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Miller</title>
		<link>http://www.theotherblog.com/Articles/2009/06/02/the-holy-grail-of-the-funky-data-model/comment-page-1/#comment-53199</link>
		<dc:creator>Mike Miller</dc:creator>
		<pubDate>Wed, 08 Jul 2009 21:18:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.theotherblog.com/?p=4882#comment-53199</guid>
		<description>Just stumbled upon this.  One nice thing about the CouchDB community is that their are libs in any language you like.  If you&#039;re not happy with curl at the command line, I&#039;m very happy with couchdb-python lib from cmlenz.  Mixed with ipython it&#039;s really natural, and we&#039;ve been running it in production for half a year now, so very well supported.</description>
		<content:encoded><![CDATA[<p>Just stumbled upon this.  One nice thing about the CouchDB community is that their are libs in any language you like.  If you&#8217;re not happy with curl at the command line, I&#8217;m very happy with couchdb-python lib from cmlenz.  Mixed with ipython it&#8217;s really natural, and we&#8217;ve been running it in production for half a year now, so very well supported.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://www.theotherblog.com/Articles/2009/06/02/the-holy-grail-of-the-funky-data-model/comment-page-1/#comment-53177</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Fri, 05 Jun 2009 18:02:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.theotherblog.com/?p=4882#comment-53177</guid>
		<description>This should get you what you want:

db.recipes.find( { title : /bacon/i , yumminess : { $gte : 8 } } );

Can you send me the result :)</description>
		<content:encoded><![CDATA[<p>This should get you what you want:</p>
<p>db.recipes.find( { title : /bacon/i , yumminess : { $gte : 8 } } );</p>
<p>Can you send me the result <img src='http://www.theotherblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://www.theotherblog.com/Articles/2009/06/02/the-holy-grail-of-the-funky-data-model/comment-page-1/#comment-53176</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Fri, 05 Jun 2009 17:55:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.theotherblog.com/?p=4882#comment-53176</guid>
		<description>db.recipes.find( { title : /bacon/i , yumminess : { $gte : 8 } } ); 

should do the trick.

can i see the results :)</description>
		<content:encoded><![CDATA[<p>db.recipes.find( { title : /bacon/i , yumminess : { $gte : 8 } } ); </p>
<p>should do the trick.</p>
<p>can i see the results <img src='http://www.theotherblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dm</title>
		<link>http://www.theotherblog.com/Articles/2009/06/02/the-holy-grail-of-the-funky-data-model/comment-page-1/#comment-53175</link>
		<dc:creator>dm</dc:creator>
		<pubDate>Fri, 05 Jun 2009 16:40:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.theotherblog.com/?p=4882#comment-53175</guid>
		<description>um,

db.recipes.find({ingredients : &#039;bacon&#039;,yumminess : { $gt : 8.0 }} );

on one line in the shell, shell doesn&#039;t like multiline i think.</description>
		<content:encoded><![CDATA[<p>um,</p>
<p>db.recipes.find({ingredients : &#8216;bacon&#8217;,yumminess : { $gt : 8.0 }} );</p>
<p>on one line in the shell, shell doesn&#8217;t like multiline i think.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dm</title>
		<link>http://www.theotherblog.com/Articles/2009/06/02/the-holy-grail-of-the-funky-data-model/comment-page-1/#comment-53174</link>
		<dc:creator>dm</dc:creator>
		<pubDate>Fri, 05 Jun 2009 16:39:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.theotherblog.com/?p=4882#comment-53174</guid>
		<description>try from the shell:

db.recipes.ensureIndex({ingredients:1});
db.recipes.find( 
 {
  ingredients : &#039;bacon&#039;, 
  yumminess : { $gt : 8.0 } 
 } );

should be fast.</description>
		<content:encoded><![CDATA[<p>try from the shell:</p>
<p>db.recipes.ensureIndex({ingredients:1});<br />
db.recipes.find(<br />
 {<br />
  ingredients : &#8216;bacon&#8217;,<br />
  yumminess : { $gt : 8.0 }<br />
 } );</p>
<p>should be fast.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

