vote up 4 vote down star
2

I've heard a lot about couchdb lately, and am confused about what it offers.

flag
see also stackoverflow.com/questions/337344/… – Jason S Mar 13 at 22:19

4 Answers

vote up 2 vote down

Take a look here. I think what better answers you is:

Just as CouchDB is not always the right tool for the job, RDBMS's are also not always the right answer.

link|flag
Just to make things clear. These are words of Paul Joseph Davis that I do really agree. – paulosuzart Apr 1 at 18:29
vote up 1 vote down

CouchDB is a document-oriented database.

Wikipedia:

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.

Advantages:

  • You don't waste space by leaving empty fields in documents (because they're not necessarily needed)
  • By providing a simple frontend for editing it is possible to quickly set up an application for maintaining data.
link|flag
vote up 1 vote down
  • Fast and agile schema updates/changes
  • Map Reduce queries in a turing complete language of your choice. (no more sql)
  • Flexible Schema designs
  • Freeform Object Storage
  • Really really easy replication
  • Really Really easy Load-Balancing (soon)
link|flag
vote up -1 vote down

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.

link|flag
This would have been better as a comment to Markus' answer than as a separate answer. – musicfreak Sep 12 at 4:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.