Skip to content

olif/kvdb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

KVDB

KVDB is a key-value database with multiple impelementations all adhering to the same simple interface. It is inspired by Chapter 3 in fantastic book Designing Data-Intensive Applications by Martin Kleppman

It is written solely for my own and others learning purposes and should thus not be used in any production environment.

Implementations

  • In-memory
  • Append only log
  • Append only log with in-memory index
  • Append only log with in-memory index with a merging and compaction process
  • LSMT implementation

Building the application

Go 1.14 or later is required.

The application can be built with

$> go build cmd/kvdb/main.go

About

A tiny key value database implementation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages