https://github.com/ldmtam/raft-bitcask
Raft backend implementation using Go-Bitcask
https://github.com/ldmtam/raft-bitcask
go raft-consensus-algorithm
Last synced: about 2 months ago
JSON representation
Raft backend implementation using Go-Bitcask
- Host: GitHub
- URL: https://github.com/ldmtam/raft-bitcask
- Owner: ldmtam
- Created: 2024-01-17T09:40:39.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-21T04:54:29.000Z (over 1 year ago)
- Last Synced: 2025-01-27T23:45:04.921Z (4 months ago)
- Topics: go, raft-consensus-algorithm
- Language: Go
- Homepage:
- Size: 9.77 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RAFT-BITCASK
This repository provides the `raftbitcask` package. The package exports the `BitcaskStore` which is an implementation of both a `LogStore` and `StableStore`.
It is meant to be used as a backend for the `raft` [package here](https://github.com/hashicorp/raft).
This implementation uses [Go-Bitcask](https://github.com/ldmtam/go-bitcask). Go-Bitcask is a Log-Structured Hash Table for Fast Key/Value Data written in pure Go.
# License
raft-bitcask is Open Source and available under the Apache 2 License.