Show HN: WildcatDB – A persistent key-value store built for concurrency

9 diagraphic 1 6/15/2025, 2:14:56 PM github.com ↗

Comments (1)

diagraphic · 2h ago
Hey everyone! I've been tinkering with storage systems for the past few years as a nights-and-weekends obsession. Wildcat is my latest experiment -- an open-source Go-based storage engine with C-interop that combines MVCC with lock-free data structures, atomic block-storage and an LSM-tree approach (think RocksDB).

It's definitely over-engineered for most use cases. The code base has grown to handle everything from cross-platform file I/O to transaction recovery, with way more documentation than probably necessary.

Not claiming it's production-ready or faster than the battle-tested options out there, but as an experimental solution to concurrency bottlenecks it's rather cool. :)

I'd love to hear your thoughts. Always happy to discuss the design or answer questions.