what are the advantages of couchdb vs a RDBMS - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T16:27:16Z http://stackoverflow.com/feeds/question/644695 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/644695/what-are-the-advantages-of-couchdb-vs-a-rdbms 4 what are the advantages of couchdb vs a RDBMS danny 2009-03-13T21:31:57Z 2009-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#644758 1 Answer by Markus Lux for what are the advantages of couchdb vs a RDBMS Markus Lux 2009-03-13T21:53:47Z 2009-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#699477 1 Answer by Jeremy Wall for what are the advantages of couchdb vs a RDBMS Jeremy Wall 2009-03-30T23:30:29Z 2009-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#706629 2 Answer by paulosuzart for what are the advantages of couchdb vs a RDBMS paulosuzart 2009-04-01T17:41:57Z 2009-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 -1 Answer by unknown (google) for what are the advantages of couchdb vs a RDBMS unknown (google) 2009-09-12T03:58:12Z 2009-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>