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

https://github.com/samuelschlesinger/paxos

Documenting my understanding of the Paxos algorithm for future reference
https://github.com/samuelschlesinger/paxos

consensus learning paxos

Last synced: 9 days ago
JSON representation

Documenting my understanding of the Paxos algorithm for future reference

Awesome Lists containing this project

README

          

# Paxos

A mock implementation of Paxos along with a markdown presentation using
`slides` describing the algorithm.

The slides can be run like:

```bash
$ slides presentation.md
```

The code can be played with like:

```bash
$ ghci Paxos.hs
```

At some point, I would like to implement a working version of the algorithm
and try to understand the more practical considerations when building out
fault tolerant systems.