Hacker News new | ask | show | jobs
by hyc_symas 4454 days ago
LMDB was written specifically for multi-threading; all of its shared data structures are cache-line aligned to prevent false sharing. This is also essential to allowing readers to run with no locks.