couchdb « Database Product « Java Database Q&A





1. Which Java library/libraries for CouchDB?    stackoverflow.com

Which libraries are people using for CouchDB? I just finished getting couchdb4j running successfully, it seems to have some clunkiness. I was going to try

2. How to synchronize access to ehcache, memcached & other key-value stores?    stackoverflow.com

From my understanding, each of these methods: get() and put() are atomic. But, when accessing caches like ehcache & memcached, in a CheckThenAct fashion, race conditions will arise. What should we synchronize on ...

3. How do you use CouchDB Change Notifications Continuous Changes from Java?    stackoverflow.com

I am trying to use the couchdb (continuous) changes API from Java and find that after exhausting the list of current changes the stream seems to be closed, not stay open ...

4. Caching Authentication Data    stackoverflow.com

I'm currently implementing a REST web service using CouchDB and RESTlet. The RESTlet layer is mainly for authentication and some minor filtering of the JSON data served by CouchDB: Clients <= HTTP ...

5. jcouchdb: svenson unable to parse json string    stackoverflow.com

I'm trying to use jcouchdb (https://code.google.com/p/jcouchdb/) for accessing my CouchDB instance from Java. I have some JSon documents that I'd like to parse into Java classes - with Svenson, used in ...

6. Java: serverside Persistent storage solution for TableModel and TreeModel?    stackoverflow.com

Scenario: client would logon, create their own TableModel and TreeModels and be able to access it at a later time. TableModel and TreeModel which comprises of Java class objects as well ...

7. how to create "has many" between two documents in couchdb?    stackoverflow.com

basically I am wondering how you would go about in Couchdb as you would in MysQL: storing username, password in one table and link the user id as foreign key on ...

8. Cascade delete not working for Ektorp (a Java persistence API for couchdb)    stackoverflow.com

We are stuck with cascading delete when using ektorp for couchDb. Ours is a complex object. We are able to save different documents for all the children in the object tree ...

9. Couchdb: Read a View in Java    stackoverflow.com

I am using couchdb for first time but I am facing a problem that I cannot find how to solve. I am creating an ad-hoc view with the following line

ViewResults resultAdHoc ...





10. How to get a java.util.Map from id to string prop in couchdb using ektorp    stackoverflow.com

I'm having trouble dealing with what I thought would be a simple problem. Basically, I need a java.util.Map<String, String>, where ids end up being the map keys, and someField of my ...

11. JavaFx, HttpDataSource and CouchDb    forums.netbeans.org

I am familiarizing my self with NetBeans and JavaFx. I am leaning towards using Apache CouchDb as a local data provider; however, the JSON emitted from it is different than that ...