stwissel
stwissel

Reputation: 20384

Use couchDB with vert.x

I'm looking into a NoSQL database for use with Vert.x Based on the not so favorable results mongoDB is out, so I'm looking at CouchDB/CouchBase, not at least since some of our data collection runs on RaberryPI fed by Arduino I/O (with a Rasbery PI CouchDB instance for offline collection).

What Java library would be suitable/best for use with CouchDB and Vert.x

Upvotes: 0

Views: 1374

Answers (1)

Tim Perry
Tim Perry

Reputation: 13266

I don't know a lot about vert.x but it appears to run on the JVM, so you should just be able to use Ektorp, which is pretty much the standard Java library for CouchDB nowadays. It covers all the core functionality, it's fairly well thought out, and the maintainer has been reasonably responsive to pull requests etc, as far as I've seen.

There's more documentation on Ektorp here.

Upvotes: 2

Related Questions