Skip to content

Commit 2f6aa8d

Browse files
committed
docs: 整理文档
1 parent 11c8401 commit 2f6aa8d

File tree

2 files changed

+48
-26
lines changed

2 files changed

+48
-26
lines changed

README.md

Lines changed: 24 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,30 @@
3535

3636
### 分布式存储原理
3737

38-
- [分布式简介](https://dunwu.github.io/design/distributed/分布式简介.html)
39-
- [分布式基础理论](https://dunwu.github.io/design/distributed/分布式理论.html) - 关键词:`拜占庭将军``CAP``BASE`
40-
- [分布式算法 Paxos](https://dunwu.github.io/design/distributed/分布式算法Paxos.html) - 关键词:`共识性算法`
41-
- [分布式算法 Raft](https://dunwu.github.io/design/distributed/分布式算法Raft.html) - 关键词:`共识性算法`
42-
- [负载均衡](https://dunwu.github.io/design/distributed/负载均衡.html) - 关键词:`轮询``随机``最少连接``源地址哈希``一致性哈希``虚拟 hash 槽`
43-
- [消息队列](https://dunwu.github.io/design/distributed/消息队列.html) - 关键词:`重复消费``消息丢失``消息顺序性``消息积压`
44-
- [分布式存储](https://dunwu.github.io/design/distributed/分布式存储.html) - 关键词:`读写分离``分库分表``迁移``扩容`
45-
- [分布式缓存](https://dunwu.github.io/design/distributed/分布式缓存.html) - 关键词:`进程内缓存``分布式缓存``缓存雪崩``缓存穿透``缓存击穿``缓存更新``缓存预热``缓存降级`
46-
- [分布式锁](https://dunwu.github.io/design/distributed/分布式锁.html) - 关键词:`数据库``Redis``ZooKeeper``互斥``可重入``死锁``容错``自旋尝试`
47-
- [分布式 ID](https://dunwu.github.io/design/distributed/分布式ID.html) - 关键词:`UUID``自增序列``雪花算法``Leaf`
48-
- [分布式事务](https://dunwu.github.io/design/distributed/分布式事务.html) - 关键词:`2PC``3PC``TCC``本地消息表``MQ 消息``SAGA`
49-
- [分布式会话](https://dunwu.github.io/design/distributed/分布式会话.html) - 关键词:`粘性 Session``Session 复制共享``基于缓存的 session 共享`
50-
- [流量控制](https://dunwu.github.io/design/distributed/流量控制.html) - 关键词:`计数器法``时间窗口法``令牌桶法``漏桶法`
38+
#### 分布式理论
39+
40+
- [分布式理论](https://dunwu.github.io/design/pages/367308/)
41+
- [深入剖析共识性算法 Paxos](https://dunwu.github.io/design/pages/874539/)
42+
- [深入剖析共识性算法 Raft](https://dunwu.github.io/design/pages/e40812/)
43+
- [分布式算法 Gossip](https://dunwu.github.io/design/pages/d15993/)
44+
45+
#### 分布式关键技术
46+
47+
##### 流量调度
48+
49+
- [流量控制](https://dunwu.github.io/design/pages/282676/)
50+
- [深入浅出负载均衡](https://dunwu.github.io/design/pages/b7ca44/)
51+
- [服务路由](https://dunwu.github.io/design/pages/d04ece/)
52+
- [分布式会话基本原理](https://dunwu.github.io/design/pages/3e66c2/)
53+
54+
##### 数据调度
55+
56+
- [缓存基本原理](https://dunwu.github.io/design/pages/471208/)
57+
- [读写分离基本原理](https://dunwu.github.io/design/pages/7da6ca/)
58+
- [分库分表基本原理](https://dunwu.github.io/design/pages/103382/)
59+
- [分布式 ID 基本原理](https://dunwu.github.io/design/pages/0b2e59/)
60+
- [分布式事务基本原理](https://dunwu.github.io/design/pages/910bad/)
61+
- [分布式锁基本原理](https://dunwu.github.io/design/pages/69360c/)
5162

5263
### 其他
5364

docs/README.md

Lines changed: 24 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,30 @@ footer: CC-BY-SA-4.0 Licensed | Copyright © 2018-Now Dunwu
3737

3838
### 分布式存储原理
3939

40-
- [分布式简介](https://dunwu.github.io/design/distributed/分布式简介.html)
41-
- [分布式基础理论](https://dunwu.github.io/design/distributed/分布式理论.html) - 关键词:`拜占庭将军``CAP``BASE`
42-
- [分布式算法 Paxos](https://dunwu.github.io/design/distributed/分布式算法Paxos.html) - 关键词:`共识性算法`
43-
- [分布式算法 Raft](https://dunwu.github.io/design/distributed/分布式算法Raft.html) - 关键词:`共识性算法`
44-
- [负载均衡](https://dunwu.github.io/design/distributed/负载均衡.html) - 关键词:`轮询``随机``最少连接``源地址哈希``一致性哈希``虚拟 hash 槽`
45-
- [消息队列](https://dunwu.github.io/design/distributed/消息队列.html) - 关键词:`重复消费``消息丢失``消息顺序性``消息积压`
46-
- [分布式存储](https://dunwu.github.io/design/distributed/分布式存储.html) - 关键词:`读写分离``分库分表``迁移``扩容`
47-
- [分布式缓存](https://dunwu.github.io/design/distributed/分布式缓存.html) - 关键词:`进程内缓存``分布式缓存``缓存雪崩``缓存穿透``缓存击穿``缓存更新``缓存预热``缓存降级`
48-
- [分布式锁](https://dunwu.github.io/design/distributed/分布式锁.html) - 关键词:`数据库``Redis``ZooKeeper``互斥``可重入``死锁``容错``自旋尝试`
49-
- [分布式 ID](https://dunwu.github.io/design/distributed/分布式ID.html) - 关键词:`UUID``自增序列``雪花算法``Leaf`
50-
- [分布式事务](https://dunwu.github.io/design/distributed/分布式事务.html) - 关键词:`2PC``3PC``TCC``本地消息表``MQ 消息``SAGA`
51-
- [分布式会话](https://dunwu.github.io/design/distributed/分布式会话.html) - 关键词:`粘性 Session``Session 复制共享``基于缓存的 session 共享`
52-
- [流量控制](https://dunwu.github.io/design/distributed/流量控制.html) - 关键词:`计数器法``时间窗口法``令牌桶法``漏桶法`
40+
#### 分布式理论
41+
42+
- [分布式理论](https://dunwu.github.io/design/pages/367308/)
43+
- [深入剖析共识性算法 Paxos](https://dunwu.github.io/design/pages/874539/)
44+
- [深入剖析共识性算法 Raft](https://dunwu.github.io/design/pages/e40812/)
45+
- [分布式算法 Gossip](https://dunwu.github.io/design/pages/d15993/)
46+
47+
#### 分布式关键技术
48+
49+
##### 流量调度
50+
51+
- [流量控制](https://dunwu.github.io/design/pages/282676/)
52+
- [深入浅出负载均衡](https://dunwu.github.io/design/pages/b7ca44/)
53+
- [服务路由](https://dunwu.github.io/design/pages/d04ece/)
54+
- [分布式会话基本原理](https://dunwu.github.io/design/pages/3e66c2/)
55+
56+
##### 数据调度
57+
58+
- [缓存基本原理](https://dunwu.github.io/design/pages/471208/)
59+
- [读写分离基本原理](https://dunwu.github.io/design/pages/7da6ca/)
60+
- [分库分表基本原理](https://dunwu.github.io/design/pages/103382/)
61+
- [分布式 ID 基本原理](https://dunwu.github.io/design/pages/0b2e59/)
62+
- [分布式事务基本原理](https://dunwu.github.io/design/pages/910bad/)
63+
- [分布式锁基本原理](https://dunwu.github.io/design/pages/69360c/)
5364

5465
### 其他
5566

0 commit comments

Comments
 (0)