I'm in need for an embedded database for a Clojure application. Maybe it's the same criteria as for any other Java application but I rather get some other people's opinion anyway. I'm not picking SQLite because that's not pure Java so distribution of a standalone application gets much more complex. It seems the way to go is Apache Derby. Anything else I should consider?
|
|
Without a doubt, H2 Here are the settings,
And then the usual Clojure SQL code:
|
|||||
|
|
Have you looked at FleetDB? It's a Clojure database with a JSON protocol and clients in several languages. I suspect you could probably run it embedded without working too hard at it. |
|||
|
|
|
I think Derby makes an excellent 100% Java embedded database, and it's useful for a wide variety of applications, well-maintained by an active community, and very well documented. |
|||
|
|
|
I used an embedded database, H2 within clojure and used clojureQL to access it. Be warned though that since the database is in process you should not use this for large amounts of records (> than 10,000s in a single table) as you will get huge performance problems as the database and your code will both be sharing the same JVM |
|||
|
|
|
If you don't mind NOSQL, neo4j is an embeddable graph db with transactions, licensed under the GPL. The most up to date bindings I've found are https://github.com/hgavin/borneo There is also an interesting graph db project in clojure with pluggable backends: https://github.com/flatland/jiraph The still quite young but promising looking OrientDB might be worth a look: http://www.orientechnologies.com/orient-db.htm http://github.com/eduardoejp/clj-orient Then there's http://jdbm.sourceforge.net/ |
||||
|
|