My company uses CouchDB, and I will soon have to interact with it, so I get a cool course in it, and when I read various lessons and examples, I stumbled upon the one I did. I wonder: are many design documents emptying CouchDB?
A specific example that I read that reflects my own use case is one where the middle tier creates a new project document for each client, restricting all requests and the associated generated trees to trees.
But does this not mean that you have in the best case (from a business point of view) thousands of project documents? It occurs to me that since each of these project documents must be run for each insert, at least in order to emit nothing, this would ultimately become a serious strain on the server.
Am I missing something substantial in the design of CouchDB that makes this not a problem? Or is there a smarter way to handle this?
source share