Post
Topic
Board Development & Technical Discussion
Merits 1 from 1 user
Re: NuDB: A Key/Value Store For Decentralized Systems
by
tacotime
on 11/04/2015, 22:52:47 UTC
⭐ Merited by ABCbits (1)
These types of DBs are popular lately, for example, btcwallet now uses boltdb, while Monero uses LMDB. They're all kind of similar: full ACID semantics w/ MVCC, data stored on disk in B+ trees, async read/update with scheduling and transitory state patches for reads, multiple namespaces, nested buckets, etc.

AFAIK, bitcore is moving towards adopting more DB agnostic architecture, so in the future you can plug and play whatever crazy DB type you want.