lmdb.md
March 21, 2016 ยท View on GitHub
LMDB
Couple key features
- full acid with MVCC
- multi-thread / multi-process concurrency
- optimized for read
- readers don't lock and don't block writes.
- readers don't allocate memory (mmap'd directly so zero-copy)
- only 1 writers allowed
- no compaction / garbage collection ==> relatively deterministic latency (no spikes)
Useful Videos: