BadgerDB is an embedded Golang database developed by dgraph. It uses an LSM tree with many files. Seeing how Badger performs will be really interesting.
Alright, after spending some time writing an inverted index implementation on top of badger, I found out that badger attempts to memory map a DISCARD file, even in read-only mode. :-/
BadgerDB is an embedded Golang database developed by dgraph. It uses an LSM tree with many files. Seeing how Badger performs will be really interesting.