Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gardnervickers/page-paxos
CASPaxos implementation over a flat address space
https://github.com/gardnervickers/page-paxos
Last synced: 22 days ago
JSON representation
CASPaxos implementation over a flat address space
- Host: GitHub
- URL: https://github.com/gardnervickers/page-paxos
- Owner: gardnervickers
- Created: 2023-11-24T23:11:46.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2023-12-13T14:36:14.000Z (11 months ago)
- Last Synced: 2023-12-14T04:05:49.186Z (11 months ago)
- Language: Rust
- Size: 45.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Page CASPaxos
PageCasPaxos is intended to be an extremely simple CASPaxos implementation, useful for storing and modifying small, fixed size values (a page).
## Why
I wanted to see if I could build a really simple consensus implementation in a few hundred lines of code and a day or two.
## Were you successful?
Sorta. The main missing piece is reconfiguration. I spent a lot of time working on a simulator.
## TODO:
- [ ] Reconfiguration
- [ ] Support for FPaxos variably sized propose/accept quorums.
- [ ] 1RTT leader optimization prevote