Learn to develop Key-Value databases from scratch (Java)
dbfromzero.com
Learn to develop Key-Value databases from scratch (Java)
1–2 of 2 posts
Re: Learn to develop Key-Value databases from scratch (Java)
#2The author builds complexity of the databases step by step. Each step has detailed explanations, code, benchmarks and tradeoff decisions that are being talked through. Some of the topics include
Persisting records and indices on disk for both read-only and read/write databases (LSM trees)
Write ahead logs for durability
Managing concurrent operations through different locking approaches