Skip to content

Commit

Permalink
feat(basic): add
Browse files Browse the repository at this point in the history
  • Loading branch information
shgopher committed Oct 28, 2024
1 parent 574e12d commit 68d4359
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
3 changes: 2 additions & 1 deletion 系统设计基础/分布式/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
* @Author: shgopher shgopher@gmail.com
* @Date: 2024-09-14 13:02:10
* @LastEditors: shgopher shgopher@gmail.com
* @LastEditTime: 2024-10-27 23:52:37
* @LastEditTime: 2024-10-28 10:22:54
* @FilePath: /luban/系统设计基础/分布式/README.md
* @Description:
*
* Copyright (c) 2024 by shgopher, All Rights Reserved.
-->
# 分布式
## 分布式理论
- [拜占庭将军问题](./分布式理论/拜占庭将军问题/README.md)
- [CAP](./分布式理论/CAP/README.md)
- [BASE](./分布式理论/BASE/README.md)
- [ACID](./分布式理论/ACID/README.md)
Expand Down
4 changes: 2 additions & 2 deletions 系统设计基础/分布式/分布式理论/BASE/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
*
* Copyright (c) 2024 by shgopher, All Rights Reserved.
-->
# BASE
# BASE

BASE:basically available eventually consistent ,基本可用,最终一致 主要追求的是 AP 即:高可用性
BASE:basically available eventually consistent,基本可用,最终一致主要追求的是 AP 即:高可用性
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# 拜占庭将军问题
拜占庭将军将军问题讨论的核心内容是**分布式共识问题**

其中,分布式共识算法分为两种,拜占庭容错算法 (即:类似 PoW 共识算法这种为了避免恶意攻击的共识算法) 以及非拜占庭容错算法或者称之为故障容错算法 (即:仅考虑因故障而不考虑恶意攻击的共识算法,比如最常见的 Raft 共识算法),后者非拜占庭容错算法在日常的工作中占大头,比如常见的 Raft ZAB Gossip 等,前者是区块链领域的核心思想。





0 comments on commit 68d4359

Please sign in to comment.