views:

97

answers:

2

In MongoDB you have a lot of helper methods that do all the basic operations for you:

  • count
  • sort
  • update
  • replace
  • etc...

In CouchDB you ahve to write map-reduce for everything by hand for basic operations?

+1  A: 

It's all Map / Reduce functions.

Josh K
But do I have to write everything by hand? Doesn't CouchDB provide wrappers or some other sort of help for basic operations like count, sort, find by key etc?
never_had_a_name
@ajsi: Not that I am aware of.
Josh K
+3  A: 

There are some built-in functions for CouchDB and there's a CommonJS implementation for CouchDB.

joschi