what are the advantages of couchdb vs a RDBMS - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T16:27:16Zhttp://stackoverflow.com/feeds/question/644695http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/644695/what-are-the-advantages-of-couchdb-vs-a-rdbms4what are the advantages of couchdb vs a RDBMSdanny2009-03-13T21:31:57Z2009-09-12T03:58:12Z
<p>I've heard a lot about <a href="http://couchdb.apache.org/" rel="nofollow">couchdb</a> lately, and am confused about what it offers.</p>
http://stackoverflow.com/questions/644695/what-are-the-advantages-of-couchdb-vs-a-rdbms/644758#6447581Answer by Markus Lux for what are the advantages of couchdb vs a RDBMSMarkus Lux2009-03-13T21:53:47Z2009-03-13T21:53:47Z<p>CouchDB is a <a href="http://en.wikipedia.org/wiki/Document-oriented%5Fdatabase" rel="nofollow">document-oriented database</a>.</p>
<p>Wikipedia: </p>
<blockquote>
<p>As opposed to Relational Databases, document-based databases do not store data in tables with uniform sized fields for each record. Instead, each record is stored as a document that has certain characteristics. Any number of fields of any length can be added to a document. Fields can also contain multiple pieces of data.</p>
</blockquote>
<p>Advantages:</p>
<ul>
<li>You don't waste space by leaving empty fields in documents (because they're not necessarily needed)</li>
<li>By providing a simple frontend for editing it is possible to quickly set up an application for maintaining data.</li>
</ul>
http://stackoverflow.com/questions/644695/what-are-the-advantages-of-couchdb-vs-a-rdbms/699477#6994771Answer by Jeremy Wall for what are the advantages of couchdb vs a RDBMSJeremy Wall2009-03-30T23:30:29Z2009-03-30T23:30:29Z<ul>
<li>Fast and agile schema updates/changes</li>
<li>Map Reduce queries in a turing complete language of your choice. (no more sql)</li>
<li>Flexible Schema designs</li>
<li>Freeform Object Storage</li>
<li>Really really easy replication</li>
<li>Really Really easy Load-Balancing (soon)</li>
</ul>
http://stackoverflow.com/questions/644695/what-are-the-advantages-of-couchdb-vs-a-rdbms/706629#7066292Answer by paulosuzart for what are the advantages of couchdb vs a RDBMSpaulosuzart2009-04-01T17:41:57Z2009-04-01T17:41:57Z<p>Take a look <a href="http://www.davispj.com/posts/10" rel="nofollow">here</a>.
I think what better answers you is: </p>
<blockquote>
<p>Just as CouchDB is not always the
right tool for the job, RDBMS's are
also not always the right answer.</p>
</blockquote>
http://stackoverflow.com/questions/644695/what-are-the-advantages-of-couchdb-vs-a-rdbms/1414232#1414232-1Answer by unknown (google) for what are the advantages of couchdb vs a RDBMSunknown (google)2009-09-12T03:58:12Z2009-09-12T03:58:12Z<p>CouchDB is a disk hog because it doesn't update documents -- it creates a new revision each time you update so the not-wasting-space-part because you don't have empty fields is trumped by the revisions. </p>