Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 428 Bytes

README.md

File metadata and controls

16 lines (14 loc) · 428 Bytes

About Bitcask

Bitcask is Key-Value Database engine, which used Log-Structured and Hash Table Index. The paper post by riak will show you more detail about bitcask.

About This Project

This Project is bitcask implementation in Golang. It's just for understand bitcask, not for production.

TL;DR

make build
./bin/bitcask
>>> put a b
>>> list
>>> get a
>>> exit