Recommendations to others considering CouchDB:
If you can be patient and take time to learn map/reduce queries you'll find couchdb to be one of the most programmer friendly databases. Review collected by and hosted on G2.com.
What problems is CouchDB solving and how is that benefiting you?
Couchdb allows me to have a flexible schema so I can accommodate the changing business requirements. At the same time it has functions that allow me to validate the data that is stored. So I have the flexibility of a schemaless store and the reliability of a rigid schema database.
Setting up automated backups in couchdb is easy as a pie. All you need to do is make an http call and you can have your data set replicated across distributed couchdb instances. With couchdb you can be certain that your data will always be safe and available when you need it.
It's cookie authentication feature can be reused in the application layer to implement complex access control lists. it's restful interface and focus on data segregation allows me to build independent microservies that can be moved to their own instances should the need arise. Review collected by and hosted on G2.com.