Project
lithos
lithos is a self-contained embedded key-value store written from scratch as a
native extension — no external database dependency. It uses a log-structured
merge (LSM) tree: a write-ahead log makes every write durable, an in-memory
sorted memtable flushes to immutable SSTables (with bloom filters), and
compaction merges them. Keys and values are arbitrary binary strings; keys
are kept in sorted order so you get ordered iteration and range scans, plus
crash recovery via WAL replay. Windows MSVC (mswin) Ruby only.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
Development
Licenses
MIT
Dependencies