The Artima Developer Community
Sponsored Link

Java Community News
Oracle Releases BerkeleyDB Java 3.2.13

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Frank Sommers

Posts: 2642
Nickname: fsommers
Registered: Jan, 2002

Oracle Releases BerkeleyDB Java 3.2.13 Posted: Dec 13, 2006 10:15 AM
Reply to this message Reply
Summary
BerkeleyDB Java is a small, embedded transactional storage engine that provides fast, hash-based access to indexed data. The latest BerkeleyDB release reduces the amount of disk I/O performed during data access, supports BigInteger, and provides many bug fixes.
Advertisement

While relational databases occupy a prominent role in the enterprise developer tools arsenal, the non-relational BerkeleyDB's has also been growing in niche applications. It is used at Google, for example, to provide low-level database declustering. Oracle purchased BerkeleyDB maker Sleepycat Software earlier this year, and has thrown its considerable R&D weight behind the product.

The latest 3.2.13 release provides options to further reduce I/O in several places in the database API. For example, it provides a deferred write mode in the direct persistence layer (DPL), which is an EJB-like API that uses annotations to help specify operations on data. The new configuration option allows the entire DPL store to use deferred write.

Another new feature is support for BigInteger both in the DPL API and in the actual data store:

The Values of this type are sorted in natural integer order by default, and BigInteger can be used as the type of a primary or secondary key field. DPL class evolution will automatically widen all other integer types (byte, char, short, int, long) to a BigInteger—in an existing class, changing from any of these types to BigInteger is a compatible type change.

In what situations would you consider using BerkeleyDB Java, or even its XML-flavored cousin, BerkeleyDB XML?

Topic: Google Open-Sources Google Web Toolkit Previous Topic   Next Topic Topic: Management and Monitoring Features of Java SE 6

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use