NoSQL: Using Oracle Berkley DB as a NoSQL Data Store

| | bookmark | email

Using Oracle Berkley DB as a NoSQL Data Store

Simple as it may be at its core, Berkeley DB can be configured to provide concurrent non-blocking access or support transactions, scaled out as a highly available cluster of master-slave replicas, or in a number of other ways. Berkeley DB is a pure storage engine that makes no assumptions about an implied schema or structure to the key-value pairs. Therefore, Berkeley DB easily allows for higher level API, query, and modeling abstractions on top of the underlying key-value store.

via NoSQL databases