Embed high-performance key-value storage in Go applications
BadgerDB is an embeddable, high-performance key-value store written in Go. It uses an LSM (Log-Structured Merge) tree architecture for fast writes, supports ACID transactions, and handles value size optimization. BadgerDB is ideal for applications requiring local persistence, caching layers, or edge computing without external database dependencies. It powers Dgraph graph database and many distributed systems. - Embedded: No separate server; runs in-process