views:

562

answers:

4

I am evaluating two object databases, db4o (http://www.db4o.com) and Eloquera Database (http://eloquera.com) for a coming project. I have to choose one. My basic requirement is scalability, multi user support and easy type evolution for RAD.

  1. Please share your real world experience.

  2. If you have both, can you compare these two? Which do you prefer?

A: 

-- Post removed --

leatrop
Sorry, but this is not an objective review. The guy did not even try db4o out.
Carl Rosenberger
This guy is from Eloquera, as can be seen in his profile.
Fabrice
+1  A: 

If you are interested to hear user experiences with db4o, I suggest you also ask in our db4o user forums.

While db4o was originally developed for embedded use in applications with limited resources (and now runs very well on constrained platforms like Android, CompactFramework and Silverlight) I know that we do have many users that are happily using db4o for web applications.

Indeed there is some correctness to the db4o-bashing-post by leatrop: The db4o server core currently only allows one thread to enter for storing and querying tasks in a particular database.

However there are a couple of ways to make db4o applications scale very well:
Since the setup costs for db4o databases is very low (one single API call) it is possible to work with multiple databases. You can use the db4o replication system (dRS) to distribute objects between multiple databases. It is also possible to create backups of db4o databases while they are running and to replicate these backups to multiple machines. The approach of using multiple databases (for timeslices of data or for different usecases in your application) can be very nice for backup and debugging purposes. You don't need to copy the entire database if you want to test only some aspects of your live app.

If you still find that db4o does not scale good enough for concurrent users or database sizes, you can later switch to our high-end object database Versant VOD. It was built to run in the cloud and it has a proven track record to work for thousands of concurrent users with multi-terabyte databases. VOD for .NET also comes with a LINQ provider, so the interfaces of db4o and VOD are compatible.

My recommendation: Start with db4o. It is the easiest object database to get started with and to develop with. Just store any object with one line of code, without setting up schemas or mapping files. Use LINQ to query (or native queries, if you work with Java).

db4o is open source and it's free (under the GPL).

Carl Rosenberger
In db4o user forums, I fund a related topic: Embedded DB4O (LINQ) vs Web Eloquera (SQL)http://developer.db4o.com/Forums/tabid/98/aft/5081/Default.aspx#15619
Ying
A funny coincidence: This guy "Dmytro" who asked about an opinion in our forums, seems to be working for Eloquera, as is clearly visible in Eloquera forums: http://groups.google.com.au/group/eloquera
Carl Rosenberger
Yes, as can even be seen in his profile here ("I am co-founder of Eloquera Database"). The post in your forum was not really honest it seems...
Fabrice
+2  A: 

Eloquera ( www.eloquera.com ) originally designed and developed for use in the Web environment and it’s designed as native .NET application in C#.

Eloquera wasn’t ported from Java as many other databases.

Eloquera natively as part of architecture supports:

  • Simultaneous user access
  • Security settings
  • Has genuine C/S architecture, has desktop mode available.
  • Max database size 1TB+, in a large data scale Eloquera maintains the fast query response; it has patents pending technologies including virtual file system, indexing, and adaptive cache. Eloquera has state of the art reflection written in MSIL that allows Eloquera to outperform many databases that use Microsoft’s standard reflection.
  • Supports in-memory database for the fast data processing
  • Since most of the users in the Web come from relational database world it was natural for Eloquera to support SQL and LINQ
  • EF support is due next month
  • Unlike some databases Eloquera does not put blindly objects in the database, if you change fields from int;int; to long; it will not keep querying with a wrong results because it still sees two int;int; - it will notify the user to update the definition
  • Eloquera provides a native indexing for properties and fields. Most of the databases do not provide properties indexing.

I might argue with Carl regarding DB4O the easiest database on the market, since Eloquera can do the same things from API perspective.

Eloquera is younger than Versant and still has some enterprise features coming.

Last month Eloquera R&D department got engaged with Eloquera Parallel Server to provide horizontal scaling that arguably will be magnitude cheaper than Versant’s VOD.

Some of the distinguished points

  • Eloquera is FREE for commercial use. You are not required to pay any royalties. All features above you have for FREE.
  • Eloquera has a commercial support available.
  • Eloquera is designed for the modern world with modern architecture. It was not adapting from time to time to market needs. It is natural part of Eloquera’s architecture.
Dmytro Bablinyuk
+3  A: 

For the last 2 years I've been using DB4O, and I'm now switching to Eloquera. My reasons, in order:

  1. I'm building a commercial product, and the royalty based licensing on DB4O is WAY to high; DB4O said we could "talk about it", but I'm a very small development shop and giving away a huge chunk of each sale I make just doesn't make any sense when there's a perfectly good alternative.

  2. I'm using the Db4oTool.exe to modify my assmeblies in a post-build step, and it really slows down the build process. Eloquera doesn't need to modify my assemblies.

  3. I found a bug in the DB4O code, and it took many many months before it was integrated into their codebase. I have found bugs in Eloquera and they fixed them in a day or two

  4. DB4O is not yet on .NET 4 (although they finally have an early beta). DB4O is the ONLY thing holding me back from using VS2010 (and .NET 4). I tried migrating to VS2010 but VS2010 automatically converts all unit tests to .NET 4, so all of my persistence related unit tests immediately failed.

  5. DB4O is not really designed to be thread-safe.

  6. DB4O has features and many API features that are obviously ported from Java.

Robert

Robert
I totally agree with you regarding the first reason. Even I told db4O I would release a free trail to public and expected I don't need to pay for the unlimited copies. They didn't give me a positive feedback.I haven't start using Eloquera, but I will try soon.Thank you.
Ying
+1 for "API features that are obviously ported from Java"
Mark