Slashdot Mirror


User: Chris_Stanford

Chris_Stanford's activity in the archive.

Stories
0
Comments
2
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2

  1. db4o object database is new and more KISS on Beyond Relational Databases · · Score: 1

    Some "new" databases exactly meet your requirements. db4o, the open source object database, native Java and .NET is:

    - very lean and not complex at all (one line of code stores any object)
    - scales extremely well
    - is cross platform Java and .NET
    - very performant (up to 44x faster than Hibernate+MySQL, for instance)

    Chris
    http://www.db4o.com/

  2. Hibernate in a new performance benchmark on Hibernate - A J2EE Developers Guide · · Score: 1

    The new database benchmark "PolePosition" shows how much performance Hibernate costs:

    http://polepos.sourceforge.net/

    For overcoming the object-relational mismatch in resource constrained applications, like on mobile platforms, or where performance matters, you might want to look at the open source object database db4o (http://www.db4o.com/ which is up to 44x faster in the benchmark (http://www.db4o.com/about/productinformation/benc hmarks/).

    Chris