From 43f026e041b498089aaa52a6d24550b3f7e090cc Mon Sep 17 00:00:00 2001 From: James Mills <1290234+prologic@users.noreply.github.com> Date: Thu, 21 Mar 2019 17:53:50 +1000 Subject: [PATCH] Add Bitcask (Golang) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 4d13add..4c51900 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,7 @@ A curated list of amazingly awesome database libraries, resources and shiny thin ## Go-lang +* [Bitcask](https://github.com/prologic/bitcask) - Bitcask is an embeddable, persistent and fast key-value (KV) database written in pure Go with predictable read/write performance, low latency and high throughput thanks to the bitcask on-disk layout (LSM+WAL). * [bolt](https://github.com/boltdb/bolt) - A low-level key/value database for Go. * [diskv](https://github.com/peterbourgon/diskv) - A home-grown disk-backed key-value store. * [go-cache](https://github.com/pmylund/go-cache) - An in-memory key:value store/cache (similar to Memcached) library for Go, suitable for single-machine applications.