No description
Find a file
2020-11-14 17:52:03 +01:00
msgpack added encoder and decoder 2020-11-14 17:52:03 +01:00
go.mod initial commit 2020-11-14 17:44:52 +01:00
go.sum initial commit 2020-11-14 17:44:52 +01:00
LICENSE initial commit 2020-11-14 17:44:52 +01:00
README.md initial commit 2020-11-14 17:44:52 +01:00
store.go initial commit 2020-11-14 17:44:52 +01:00
store_test.go initial commit 2020-11-14 17:44:52 +01:00
util.go initial commit 2020-11-14 17:44:52 +01:00

raft-bbolt

This work is based on https://github.com/hashicorp/raft-boltdb

This repository provides the raftbbolt package. The package exports the Store which is an implementation of both a LogStore and StableStore.

It is meant to be used as a backend for the raft package here.

This implementation uses BBolt. BBolt is a simple key/value store implemented in pure Go, and inspired by LMDB.