LevelDB
Fast key-value storage engine written by Google based on Log-Structured Merge-trees (LSM).
Why consider LevelDB?
LevelDB is an open-source, embedded key-value storage engine written in C++ by Jeffrey Dean and Sanjay Ghemawat at Google. LevelDB provides sorted key-value ordering, Snappy compression, forward/backward iteration, and high write throughput via Log-Structured Merge-tree architecture.
Learn LevelDB by building
Practical setup notes, real use cases, and copy-ready examples in one focused guide.
In this guide2 sections
Overview of LevelDB
LevelDB persists ordered key-value pairs directly to local storage disks with high write performance.
Quickstart
git clone --recurse-submodules https://github.com/google/leveldb.gitmkdir -p build && cd build && cmake -DCMAKE_BUILD_TYPE=Release .. && cmake --build .LevelDB is licensed under the BSD 3-Clause License.
Related tools
More options with a similar category or technology profile.
diskus
Minimal, fast alternative to du -sh written in Rust using multi-threaded directory traversal.
peco
Simplistic interactive filtering tool for Unix pipelines, process lists, and file trees.
Dapr CLI
Command-line tool for managing Dapr distributed application runtime environments and sidecars.
Freeze
Generate beautiful image screenshots and SVGs of code snippets and terminal outputs.