Implementation of EPaxos, a Paxos-like state machine replication protocol, for CSE 552 19sp. This version of EPaxos assumes and uses a TCP based network
Original Source: https://github.com/efficient/epaxos/tree/master/src
Built with Go version go1.1.2
To build:
export GOPATH=[...]/git/epaxos/
go install master
go install server
go install client
To run:
bin/master &
bin/server -port 7070 &
bin/server -port 7071 &
bin/server -port 7072 &
bin/client