BoltDB is an embedded key/value database written in Go. It supports fully serializable transactions, ACID semantics, and lock-free MVCC with multiple readers and a single writer. BoltDB uses a single-level, zero-copy, B+tree data storage, which allows fast read access and does not require recovery in the event of a system crash.
https://github.com/boltdb/bolt
https://github.com/boltdb/bolt
https://godoc.org/github.com/boltdb/bolt
Ben Johnson
2013
2017