Simple Key-Value database use the LSM Tree
- Simple run
go run cmd/main.go
- use the insert command like
Insert {key} {value}
insert the key value pair to the database - use the get command like
Get {key}
get the particular key from the database
- Change store data object type from JSON to binary
- Persistency store from the sst file which when the program restart can build the sst from the old data
- WAL (Write Ahead Log) Prevent the Data loss when data still in the memory table
- integration test for the database
- benchmark test for the database
- TCP connect option instead of CLI
- bloom filter prevent the Read the not exist data (with the sc)
- CLI database client with auto complete (Ternary search tree)
- Buffer Pool
- Key Value Transaction
- Cluster
- Optimize SSTable search (Now is
O(N)
)