mjpitz / aetherfs

A virtual file system for small to medium sized datasets (MB or GB, not TB or PB). Like Docker, but for data.
https://aetherfs.tech
GNU Affero General Public License v3.0
10 stars 0 forks source link

Test BadgerDB #7

Open mjpitz opened 2 years ago

mjpitz commented 2 years ago

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.

mjpitz commented 2 years ago

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. :-/