https://github.com/benbjohnson/go-raft-runner
A test runner application for the go-raft library.
https://github.com/benbjohnson/go-raft-runner
Last synced: 9 months ago
JSON representation
A test runner application for the go-raft library.
- Host: GitHub
- URL: https://github.com/benbjohnson/go-raft-runner
- Owner: benbjohnson
- License: mit
- Created: 2013-07-07T22:47:12.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-07-31T19:14:18.000Z (over 12 years ago)
- Last Synced: 2025-04-02T21:05:49.063Z (9 months ago)
- Language: Go
- Size: 55.7 KB
- Stars: 6
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Raft Runner
==============
## Overview
The Raft runner is a testbed for running the [go-raft](https://github.com/benbjohnson/go-raft) library under different scenarios.
## Running
To install:
```sh
$ go get github.com/benbjohnson/go-raft-runner
```
The first instance of the runner can be started with no options:
```sh
$ go-raft-runner
Running on localhost:20000
```
Subsequent instances of the runner should point to a node in the cluster:
```sh
$ go-raft-runner localhost:20000
Running on localhost:20001
```