~blainsmith/hare-bitcask

Hare implementation of Riak's Bitcask key/value database
move to subfolder and reorg tests
adding a license
initial release

refs

main
browse  log 

clone

read-only
https://git.sr.ht/~blainsmith/hare-bitcask
read/write
git@git.sr.ht:~blainsmith/hare-bitcask

You can also use your local clone with git send-email.

#hare-bitcask

The Hare implementation of the Bitcask database from Basho.

#CLI

There is also a CLI that comes packaged with this module. You can build or run it directly.

> hare run ./cmd/cli.ha -d /path/where/to/write/data/files
bitcask> put key1 testvalue
+OK

bitcask> get key1
testvalue

bitcask> del key1
+OK

bitcask> merge
+OK

bitcask> quit

#Installation

#From your distribution

The recommended name for this package is "hare-bitcask". Look for this, or something similar, in your local package manager. This is the preferred way to install this package.

#System-wide installation

make install

#Vendoring

git subtree -P vendor/hare-bitcask/ add https://git.sr.ht/~blainsmith/hare-bitcask main