docs: 整理文档

dependabot/maven/codes/redis/redis-in-action/com.google.code.gson-gson-2.8.9
dunwu 2022-04-21 11:17:59 +08:00
parent 11c8401c56
commit 2f6aa8da0f
2 changed files with 48 additions and 26 deletions

View File

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

View File

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