Search Results

12
votes

How do you Schedule Index Updates in CouchDB

CouchDB does regenerate views on update, but only on what has changed since the last read access to the view. Assuming your read volume greatly outweighs your write volume, this shouldn't be a prob …
5
votes

CouchDB Backups and Cloneing the Database

Another thing to be aware of is that you can copy files out from under a live database. Given that you may have a possibly large database, you could just copy it OOB from your test/production machi …
5
votes

CouchDB Document Model Changes?

Time for RDBMS de-brainwashing. :) One of the biggest points of couchdb's schema-less design is directly aimed at preventing the need for migrations. The JSON representation of objects make …
3
votes

CouchDB modeling for multi-user

There was a discussion on the mailing list a …
1
vote

How to build “Tagging” support using CouchDB?

You are very much on the right track with the view. A list of thoughts though: View generation is incremental. If you're read traffic is greater than you're write traffic, then your views w …