Re: Berkeley DB is a non-relational high-performance system/paradigm - anyone looked at it?

Bob Futrelle wrote:

> With all the discussion of RDBMS+SQL for leveraging reasoning, I was
> wondering if anyone has looked at alternatives such as the Berkeley
> DB.  It is a reasonably mature technology; acquired by Oracle earlier
> this year.

... and notorious for its instability and possible corruption whenever
you have more than 1 thread/process/machine accessing the same database.
(For instance, the BDB based backends for Subversion repositories quite
often got corrupted)

But hey, that's to expect when you go for a plain file-store instead of
something with a server backend. With a
single-thread-process-host-architecture it could work great.

Remember also that this is not magic "paradigm", it is just a disk based
hash table.

-- 
Stian Soiland
School of Computer Science
The University of Manchester
http://www.cs.man.ac.uk/~ssoiland/

Received on Friday, 15 September 2006 16:19:29 UTC