Show HN: This database never puts you on hold
github.comHey everyone! I hope you’re all having a great day. Today I’m sharing an experimental open-source project I’ve been working on for the past few months called Wildcat. Wildcat is an embedded persistent storage engine implementing an lsm tree similar to RocksDB and or LevelDB. The motivation for this system was to try to solve the multi-writer bottlenecks that most embedded systems incur. With that, during my journey with storage systems especially the log structured flavour I’ve implemented a lot of interesting optimizations and algorithms in regards to the write and read paths.
I hope you check it out :)
Alex
Nice work on Wildcat! Multi-writer bottlenecks are a real pain point - love seeing fresh approaches to LSM optimization.
Thank you! :)