I am starting with CouchDB. What is the accepted best practice to utilize databases? A single database per application storing all kinds of entities with smth like "_type" property to discriminate one from another or a separate database for each kind of entity?
views:
82answers:
1
+6
A:
One database with lots of different types of document, so you can take advantage of view collation (see http://wiki.apache.org/couchdb/View_collation). Note that top-level names prefixed with an underscore, e.g. _type, are reserved for couchdb.
Matt Goodall
2010-07-13 14:51:54