1

The nice thing about CouchDB is that the view results are updated incrementally as the database changes. Is there a way to accomplish the same thing with MongoDB? I've been unable to locate any specifics in the documentation. Thanks

Alex R
  • 11,364
  • 15
  • 100
  • 180
  • What are you trying to do? MongoDb has other capabilities that may not require the automatic view updating feature of CouchDb. – WiredPrairie Sep 15 '13 at 11:43

1 Answers1

0

No, MongoDB does not support dynamically-updated views in the way that CouchDB does. MapReduce results are written to a collection on disk and/or returned in the query; they are not updated unless you run the job again to do it.

friedo
  • 65,762
  • 16
  • 114
  • 184