An open API service indexing awesome lists of open source software.

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.

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
```