• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

v2/H21-Apr-2021-873654

.travis.ymlH A D21-Apr-202192 118

LICENSEH A D21-Apr-202115.5 KiB362265

MakefileH A D21-Apr-2021183 127

README.mdH A D21-Apr-2021431 128

bench_test.goH A D21-Apr-20211.6 KiB8966

bolt_store.goH A D21-Apr-20216.1 KiB269181

bolt_store_test.goH A D21-Apr-20218.8 KiB417327

go.modH A D21-Apr-2021167 107

go.sumH A D21-Apr-20214.2 KiB4545

util.goH A D21-Apr-2021844 3827

README.md

1raft-boltdb
2===========
3
4This repository provides the `raftboltdb` package. The package exports the
5`BoltStore` which is an implementation of both a `LogStore` and `StableStore`.
6
7It is meant to be used as a backend for the `raft` [package
8here](https://github.com/hashicorp/raft).
9
10This implementation uses [BoltDB](https://github.com/boltdb/bolt). BoltDB is
11a simple key/value store implemented in pure Go, and inspired by LMDB.
12