Skip to content

jrouviere/minikv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MiniKV

A naive toy implementation of a key value store based on LSM trees / SSTable.

The project is following the naming convention from Apache Cassandra and various other databases. Although the principles are the same the structures and file format used have been greatly simplified in that implementation:

  • memtable: data store, in memory
  • commit log or WAL: append only file for recovery, on disk
  • SSTable: sorted string table, on disk

About

Toy key value store with LSM tree

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages