Hi, > The majority of the time a good HTTP client library and JSON library are > enough.
Indeed. Once you have good libraries for JSON and HTTP, it's rather easy to write your own CouchDB library. For instance, here is mine, following the "data access object" design pattern, with a focus on read performance (cached bulk GET), easy navigation in views and notifications on _changes: https://github.com/Hypertopic/Porphyry/blob/master/src/org/hypertopic/RESTDatabase.java https://github.com/Hypertopic/Porphyry/blob/master/src/org/hypertopic/RESTDatabaseTest.java Regards, Aurélien
