Live data from Hacker News

Learn to develop Key-Value databases from scratch (Java)

dbfromzero.com

1–2 of 2 posts

Re: Learn to develop Key-Value databases from scratch (Java)

#2
The 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