You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by Apache Wiki <wi...@apache.org> on 2008/11/02 02:36:29 UTC

[Couchdb Wiki] Update of "Talking Points" by MartinCzura

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Couchdb Wiki" for change notification.

The following page has been changed by MartinCzura:
http://wiki.apache.org/couchdb/Talking_Points

The comment on the change is:
page creation

New page:
Some useful talking points for discussing CouchDB.

  * CouchDB is not a relational database management system (RDBMS). CouchDB != SQL
  * Updating documents creates new documents. There are no partial updates or stored diffs.
  * Views are crucial to CouchDB. Similar in nature to indexes in a traditional RDBMS but lazily evaluated following a MapReduce paradigm. Views let you sort and filter data.
  * Reduce is tricky, yet powerful.
  * Complex key collation is important, yet can also be tricky.
  * Replication can create conflicts. This is unavoidable. System design should explicitly account for possible conflicts as they '''will''' happen.
  * The internal revisioning system is '''only''' for conflict detection and optimistic locking (Multi-Version Concurrency Control MVCC).
  * The internal revisioning system is '''not''' usable as a revision control system.