hashicorp / raft-boltdb

Raft backend implementation using BoltDB
Mozilla Public License 2.0
645 stars 113 forks source link

Switch to forked version of bbolt to improve performance with large freelist #39

Closed ncabatoff closed 8 months ago

ncabatoff commented 8 months ago

This gets us https://github.com/etcd-io/bbolt/pull/585 before it's released officially.

shoenig commented 8 months ago

This is the wrong place to make this change. Importers of this library would reasonably expect to be using the real bbolt. If you want to replace a dependency use a replace statement in it Go mod file of the project importing this library.

ncabatoff commented 8 months ago

Fair, thanks @shoenig.