最新文章

Raft IO Execution Order (Revised)

38 分钟阅读

I got it wrong in my previous article. The IO ordering bug in Raft isn’t about the protocol design—it’s about the subtle trap that emerges when implementatio...

Paxos 中 Ballot number 的重用机制

7 分钟阅读

本文探讨 Paxos 协议中 Ballot number 的重用机制,分析何时可重复使用,以及为何只能使用系统中已存在的值而非提议新值

200行代码实现基于paxos的kv存储

30 分钟阅读

用200行代码实现一个基于paxos的kv存储, 以最简洁的形式展示paxos如何运行, 作为 paxos的直观解释 这篇教程中的代码示例部分