<?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>BUY Lasix (Brand) ONLINE WITHOUT PRESCRIPTION</title>
	<atom:link href="http://elegantcode.com/2009/07/18/design-documents-in-couchdb-and-validation/feed/" rel="self" type="application/rss+xml" />
	<link>http://elegantcode.com/2009/07/18/design-documents-in-couchdb-and-validation/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=design-documents-in-couchdb-and-validation</link>
	<description></description>
	<lastBuildDate>Tue, 08 May 2012 09:13:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>BUY Lasix (Brand) ONLINE WITHOUT PRESCRIPTION</title>
		<link>http://elegantcode.com/2009/07/18/design-documents-in-couchdb-and-validation/comment-page-1/#comment-48021</link>
		<dc:creator>Jan Van Ryswyck</dc:creator>
		<pubDate>Thu, 30 Jul 2009 19:25:24 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2009/07/18/design-documents-in-couchdb-and-validation/#comment-48021</guid>
		<description>@dm: Thx for the suggestion. I&#039;ve already picked up some of the noice about other document DBs, including mongodb. Interesting to hear about &quot;collections&quot; - indeed a very interesting feature. Being new to document databases in general, I&#039;ll definitely have a look at mongodb as well.</description>
		<content:encoded><![CDATA[<p>@dm: Thx for the suggestion. I&#8217;ve already picked up some of the noice about other document DBs, including mongodb. Interesting to hear about &#8220;collections&#8221; &#8211; indeed a very interesting feature. Being new to document databases in general, I&#8217;ll definitely have a look at mongodb as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>BUY Lasix (Brand) ONLINE WITHOUT PRESCRIPTION</title>
		<link>http://elegantcode.com/2009/07/18/design-documents-in-couchdb-and-validation/comment-page-1/#comment-48008</link>
		<dc:creator>dm</dc:creator>
		<pubDate>Thu, 30 Jul 2009 12:00:33 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2009/07/18/design-documents-in-couchdb-and-validation/#comment-48008</guid>
		<description>Personally I am a fan of keeping the concept of tables (&quot;collections&quot;) around for JSON-style stores.  In MongoDB, which like Couch is document-oriented, there is the concept of collections - one would have an orders collection and customers collection.  I still find that model useful when I write db apps.  It is still schemaless in the sense that the objects in the collections can have any desired fields -- for example one could just have a &quot;things&quot; collection there and dump everything in it as above.  One nice side effect is that objects of the same &quot;type&quot; are grouped together physically on disk which can be good for performance in certain circumstances too; I guess in theory CouchDB could do this internally by being very smart.

p.s I am a committer on mongodb and have my biases...check both out for yourself, right tool for the right job.</description>
		<content:encoded><![CDATA[<p>Personally I am a fan of keeping the concept of tables (&#8220;collections&#8221;) around for JSON-style stores.  In MongoDB, which like Couch is document-oriented, there is the concept of collections &#8211; one would have an orders collection and customers collection.  I still find that model useful when I write db apps.  It is still schemaless in the sense that the objects in the collections can have any desired fields &#8212; for example one could just have a &#8220;things&#8221; collection there and dump everything in it as above.  One nice side effect is that objects of the same &#8220;type&#8221; are grouped together physically on disk which can be good for performance in certain circumstances too; I guess in theory CouchDB could do this internally by being very smart.</p>
<p>p.s I am a committer on mongodb and have my biases&#8230;check both out for yourself, right tool for the right job.</p>
]]></content:encoded>
	</item>
	<item>
		<title>BUY Lasix (Brand) ONLINE WITHOUT PRESCRIPTION</title>
		<link>http://elegantcode.com/2009/07/18/design-documents-in-couchdb-and-validation/comment-page-1/#comment-47981</link>
		<dc:creator>Ray Daly: Learning CouchDB by Ray Daly</dc:creator>
		<pubDate>Tue, 28 Jul 2009 14:23:16 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2009/07/18/design-documents-in-couchdb-and-validation/#comment-47981</guid>
		<description>[...] in CouchDB July 10, 2009 * [http://elegantcode.com/2009/07/10/views-into-couchdb/ ] July 10, 2009 * Design Documents in CouchDB and Validation July 18, [...]</description>
		<content:encoded><![CDATA[<p>[...] in CouchDB July 10, 2009 * [http://elegantcode.com/2009/07/10/views-into-couchdb/ ] July 10, 2009 * Design Documents in CouchDB and Validation July 18, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>BUY Lasix (Brand) ONLINE WITHOUT PRESCRIPTION</title>
		<link>http://elegantcode.com/2009/07/18/design-documents-in-couchdb-and-validation/comment-page-1/#comment-47850</link>
		<dc:creator>Jan</dc:creator>
		<pubDate>Thu, 23 Jul 2009 10:25:27 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2009/07/18/design-documents-in-couchdb-and-validation/#comment-47850</guid>
		<description>I guess it&#039;s a style question. I prefer

function(doc) {
  if(doc.type == &quot;foo&quot;) {
    emit(doc.key, doc.value);
  }
}

over the return. plus, leaving out curly braces is plain evil :)</description>
		<content:encoded><![CDATA[<p>I guess it&#8217;s a style question. I prefer</p>
<p>function(doc) {<br />
  if(doc.type == &#8220;foo&#8221;) {<br />
    emit(doc.key, doc.value);<br />
  }<br />
}</p>
<p>over the return. plus, leaving out curly braces is plain evil <img src='http://elegantcode.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>BUY Lasix (Brand) ONLINE WITHOUT PRESCRIPTION</title>
		<link>http://elegantcode.com/2009/07/18/design-documents-in-couchdb-and-validation/comment-page-1/#comment-47793</link>
		<dc:creator>Dew Drop &#8211; July 20, 2009 &#124; Alvin Ashcraft's Morning Dew</dc:creator>
		<pubDate>Mon, 20 Jul 2009 12:10:34 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2009/07/18/design-documents-in-couchdb-and-validation/#comment-47793</guid>
		<description>[...] Design Documents in CouchDB and Validation and&#160;NHibernate 2.1 and Collection Event Listeners (Jan Van Ryswyck) [...]</description>
		<content:encoded><![CDATA[<p>[...] Design Documents in CouchDB and Validation and&#160;NHibernate 2.1 and Collection Event Listeners (Jan Van Ryswyck) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>BUY Lasix (Brand) ONLINE WITHOUT PRESCRIPTION</title>
		<link>http://elegantcode.com/2009/07/18/design-documents-in-couchdb-and-validation/comment-page-1/#comment-47777</link>
		<dc:creator>Daily Links for Sunday, July 19th, 2009</dc:creator>
		<pubDate>Sun, 19 Jul 2009 11:35:06 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2009/07/18/design-documents-in-couchdb-and-validation/#comment-47777</guid>
		<description>[...] Design Documents in CouchDB and Validation &#124; Elegant Code [...]</description>
		<content:encoded><![CDATA[<p>[...] Design Documents in CouchDB and Validation | Elegant Code [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

