Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 759 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 759 Bytes

Abstract-Paxos

Abstract-Paxos unifies well-known distributed consensus algorithms (Paxos, Raft, 2PC, etc.) into a single approach.

  • V1(中文): abstract-paxos-v1-cn.

    • Provides proofs and explanations.
    • Describes classic Paxos and Raft using Abstract-Paxos.

Project Status

This repository includes the core of Abstract-Paxos and demo examples that showcase how to implement various distributed consensus algorithms using Abstract-Paxos.

Abstract-Paxos implements:

  • Classic-Paxos: paxos.
  • Two-Phase-Commit: two_pc
  • Fast-Paxos
  • CAS-Paxos
  • EC-Paxos
  • Raft

Refer to: src/implementations.