A quick thought today, does CouchDB handle multiple collections of databases?
To explain what I mean, our web app has two types of users, free and commercial which differ greatly in their document and view structure. For all intents and purposes, they are completely different products. A database is created per customer, and contains all their particular data and settings.
Without going into too much needless info, we currently have a mix of commercial-based databases and free-based databases mixed together in one instance of CouchDB. From a purely organisational standpoint, it's quite messy to sift through the (currently 50) free-based databases to find the (currently 3) commercial-based databases. Is there a better way to organise or sort these?
Has anyone got any ideas? I know I could simply add prefixes to the databases, but was after a MySQL-type approach where creating a separate database would be possible.