vote up 7 vote down star
3

I'm looking for general experiences from people who have used both, particularly on how the two compare on handling large numbers of records, transaction/concurrency/deadlock handling, and juicy stories about database corruption and backup procedures.

flag
1  
BerkelyDB is either GPL-like forced source code distribution or commercial from Oracle who don't appear to publish prices. TokyoCabinet is LGPL. See stackoverflow.com/questions/525065/… where both were recommended. – Andy Dent Mar 2 at 6:16
Note that BerkeleyDB forces you to open-source only the application using BerkeleyDB directly (see the last section on the BerkeleyDB licensing page: oracle.com/technology/software/…). If you use it through another library you're ok. – vsedach Mar 2 at 22:17

2 Answers

vote up 5 vote down

Haven't used either, but I've read that Tokyo Cabinet appears to win on performance. Also, according to Simon Buchan (in the comments) and other accounts, Berkeley DB is unreliable, especially when coupled with a Subversion repository.

link|flag
Despite the FOSS cries of 'many eyes', I've found bugginess to be more a feature of the last developer's competence first and overall simplicity of the architecture second, rather than man-years total. – Simon Buchan Mar 2 at 5:46
Oh, and according to SVN, Berkeley 'wedges' itself pretty often, so they recommend FSFS (just files on disk). That may be specific to their use of it, though. – Simon Buchan Mar 2 at 5:47
Thanks for the link to the TokyoCabinet review on that blog! – Andy Dent Mar 2 at 6:17
As Simon Buchan points out BerkleyDB does screwup when used in SVN. So its probably not perfect either. – Robert Gould Mar 2 at 6:19
Thanks for the note about BDB and Subversion. That said, I just came across a contradictory article written two years ago: weblogs.asp.net/psteele/archive/… – Nikhil Chelliah Mar 2 at 16:36
show 2 more comments
vote up 3 vote down

BDB is not only a pain in the ass to configure but when you start hitting some magic limit of a million or so records, performance drops drastically even in CDS-mode. Tokyo Cabinet performs really well even beyond millions of records. I recommend TC in every way.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.