Could you advise the best open source ODMBS (object oriented database management system) for Java application?

I understand that usually there is no one definite answer for such questions. So the main points I look for are:

  1. good documentation/ support / community
  2. reliability
  3. performance

UPDATE:

I see db4o has a long history, the biggest java ODBMS community and dual-licensing. I consider this to be a good sign of good documentation/ support/ maturity.

Prevayler looks really awesome but only if you are ok with storing (caching) all your DB in the memory. Which can be not suitable for big DBs with a lot of rarely queried data.

link|improve this question

feedback

closed as not constructive by Bill the Lizard Sep 20 '11 at 13:26

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

3 Answers

up vote 5 down vote accepted

You can take a look at prevayler, which is an interesting concept.

For more mainstream take a look at db4o. You can alsa find good comparison here.

link|improve this answer
Marko, did you use Prevayler? Could you answer my question about it? stackoverflow.com/questions/454294/… – Sergey Jan 18 '09 at 10:02
How does it scale? If everything is in memory the scaling should be horrid. If not sign me up! – WolfmanDragon Feb 6 '09 at 2:07
link no longer works so updated. – Kim Jong Woo Oct 30 '11 at 22:00
feedback

I do some work on the jdbm project project - it's not super-full featured, but I find that it often provides exactly the level of functionality that I'm looking for in small apps.

link|improve this answer
feedback

Why do you want an object DBMS per se? If you're looking for the database functions in particular, there are lots of free Object-Relational mapping frameworks.

Otherwise Wikipedia has a nice comparison list.

link|improve this answer
1  
I want to avoid possible performance loss of ORM + RDBMS solution. – Sergey Dec 27 '08 at 8:14
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.