|
|
|
|
|
by davidhollander
5440 days ago
|
|
BDB is a key\value store for unordered data more similar to Tokyo Cabinet hash databases. Tokyo Cabinet hash databases are a much faster option than BDB if you only need unordered data. LevelDB is for if you need ordered data, and a more appropriate comparison would be against a B+\tree database. |
|
LevelDB is slower with random reads, but that doesn't mean you shouldn't use it for unordered data - it's still quite fast.