Comment by dfox
5 years ago
LMDB is in fact not much more than large mmaped file and clever synchronization mechanism on top of that that also serves as dictionary implementation and transaction mechanism. My uses of LMDB are essentially replacements for mmaped file and LMDB gives me the ability to sanely do partial updates.
Sounds exactly like what I'm looking for, definitely will be digging into it more. Thanks!