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
- Host: GitHub
- URL: https://github.com/samuelschlesinger/paxos
- Owner: SamuelSchlesinger
- License: mit
- Created: 2022-01-19T10:08:36.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-01-19T10:08:43.000Z (over 3 years ago)
- Last Synced: 2025-01-06T21:46:40.664Z (9 months ago)
- Topics: consensus, learning, paxos
- Language: Haskell
- Homepage:
- Size: 4.88 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.