silicondb
A concurrent key-value store, column oriented database and more.
|
A concurrent key value store, column oriented database and more.
silicondb was a project created to understand how modern NoSQL scalable distributed databases work. In particular, the author intends to learn how to implement lock-free data structures, log-structured merge trees, column-oriented data storage, Merkle trees and data replication at scale.
This project doesn't aim to compete with existing NoSQL databases and does not provide any novel feature addressing a particular pain point. However, we plan to provide implementations of wait-free simulated lock-free data structures. (See references) This project aims to be a scalable, robust alternative to modern databases with production-level code.
silicondb prioritizes efficiency on SSDs. Hence we focus on log-structured merge trees as the driving data-storage data structure instead of b-trees.
Apart from API Documentation, we describe the implementation of certain aspects of silicondb in the Wiki.
This produces a binary build/silicondb
which is the silicondb daemon server.
This should run all tests.
silicondb
is licensed under the MIT License See LICENSE for the full license text.