Search Results

3
votes
3answers
691 views

CouchDB modeling for multi-user

I am already excited about document databases and especially about CouchDB's simplicity. But I have a hard time understanding if such databases are a viable option for multi user systems. Since tho …
1
vote

What is the difference between CouchDB and Lotus Notes?

It is the Notes application and UI that people usually hates. Not the architecture behind. …
7
votes

How to build “Tagging” support using CouchDB?

Disclaimer: I didn't test this and don't know if it can perform better. Create a single perm view: function(doc) { for (var tag in doc.tags) { emit([tag, do …