├── .github └── workflows │ └── go-test.yml ├── LICENSE ├── Makefile ├── README.md ├── go.mod ├── go.sum ├── main.go ├── raft ├── snapshot.go └── state_machine.go ├── renovate.json ├── store ├── stable_store.go └── store.go └── transport └── redis.go /.github/workflows/go-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootjp/create-raft-redis/HEAD/.github/workflows/go-test.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootjp/create-raft-redis/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootjp/create-raft-redis/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootjp/create-raft-redis/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootjp/create-raft-redis/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootjp/create-raft-redis/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootjp/create-raft-redis/HEAD/main.go -------------------------------------------------------------------------------- /raft/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootjp/create-raft-redis/HEAD/raft/snapshot.go -------------------------------------------------------------------------------- /raft/state_machine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootjp/create-raft-redis/HEAD/raft/state_machine.go -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootjp/create-raft-redis/HEAD/renovate.json -------------------------------------------------------------------------------- /store/stable_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootjp/create-raft-redis/HEAD/store/stable_store.go -------------------------------------------------------------------------------- /store/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootjp/create-raft-redis/HEAD/store/store.go -------------------------------------------------------------------------------- /transport/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootjp/create-raft-redis/HEAD/transport/redis.go --------------------------------------------------------------------------------