Skip to content

Commit 94df967

Browse files
committed
feat: update README
1 parent d56c3b0 commit 94df967

1 file changed

Lines changed: 25 additions & 22 deletions

File tree

README.md

Lines changed: 25 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -226,28 +226,31 @@
226226

227227
### 💌 场景题
228228

229-
| 类型 | 题目 | 来源 |
230-
| -------- | ----------------------------------------------------------------------------- | ---- |
231-
| 数据结构 | [如何设计一个 map(一)](https://blog.heiye.site/article/5d07538f.html) | 黑夜 |
232-
| 数据结构 | [如何设计一个并发 map(二)](https://blog.heiye.site/article/e46dcc51.html) | 黑夜 |
233-
| 数据结构 | [如何设计一个 LRU(三)](https://blog.heiye.site/article/bb676e1b.html) | 黑夜 |
234-
| 数据结构 | [如何设计一个布隆过滤器(四)](https://blog.heiye.site/article/4662309e.html) | 黑夜 |
235-
| 系统设计 | [如何设计一个幂等方案(五)](https://blog.heiye.site/article/792e9ab.html) | 黑夜 |
236-
|| [如何设计一个读写锁(六)](https://blog.heiye.site/article/cec40f04.html) | 黑夜 |
237-
|| [如何设计一个分布式锁(七)](https://blog.heiye.site/article/aa3f1514.html) | 黑夜 |
238-
|| [如何设计一个乐观锁(八)](https://blog.heiye.site/article/f57ca5bc.html) | 黑夜 |
239-
| 登录 | [二维码扫描登录的原理(九)](https://blog.heiye.site/article/6f6c8f0a.html) | 黑夜 |
240-
| 登录 | [手机验证码登录原理(十)](https://blog.heiye.site/article/b0bd063d.html) | 黑夜 |
241-
| 登录 | [手机号码一键登录原理(十一)](https://blog.heiye.site/article/de27e5eb.html) | 黑夜 |
242-
| 登录 | [app手机号码登录区分新用户(十二)](https://blog.heiye.site/article/d3bfb199.html) | 黑夜 |
243-
| 订单 | [订单过期自动更新状态(十三)](https://blog.heiye.site/article/f567d34f.html) | 黑夜 |
244-
| 计数器 | [基于Redis计数器的实现(十四)](https://blog.heiye.site/article/5fc6d5d6.html) | 黑夜 |
245-
| MySQL分页 | [MySQL分页查询优化(十五)](https://blog.heiye.site/article/121835cc.html) | 黑夜 |
246-
| 限流算法 | [基于Golang实现的漏桶算法(十六)](https://blog.heiye.site/article/7c4f38da.html) | 黑夜 |
247-
| 限流算法 | [基于Golang实现的令牌桶算法(十七)](https://blog.heiye.site/article/112f9fb6.html) | 黑夜 |
248-
| 系统设计 | [如何设计拼单服务(十八)](https://blog.heiye.site/article/7bba2c37.html) | 黑夜 |
249-
| 系统设计 | [如何设计短链服务(十九)](https://blog.heiye.site/article/7de561a6.html) | 黑夜 |
250-
| 系统设计 | [如何设计视频弹幕服务(二十)](https://blog.heiye.site/article/9a691261.html) | 黑夜 |
229+
| 类型 | 题目 | 来源 |
230+
| -------- | ----------------------------------------------------------------------------- | ---- |
231+
| 数据结构 | [如何设计一个 map(一)](https://blog.heiye.site/article/5d07538f.html) | 黑夜 |
232+
| 数据结构 | [如何设计一个并发 map(二)](https://blog.heiye.site/article/e46dcc51.html) | 黑夜 |
233+
| 数据结构 | [如何设计一个 LRU(三)](https://blog.heiye.site/article/bb676e1b.html) | 黑夜 |
234+
| 数据结构 | [如何设计一个布隆过滤器(四)](https://blog.heiye.site/article/4662309e.html) | 黑夜 |
235+
| 系统设计 | [如何设计一个幂等方案(五)](https://blog.heiye.site/article/792e9ab.html) | 黑夜 |
236+
|| [如何设计一个读写锁(六)](https://blog.heiye.site/article/cec40f04.html) | 黑夜 |
237+
|| [如何设计一个分布式锁(七)](https://blog.heiye.site/article/aa3f1514.html) | 黑夜 |
238+
|| [如何设计一个乐观锁(八)](https://blog.heiye.site/article/f57ca5bc.html) | 黑夜 |
239+
| 登录 | [二维码扫描登录的原理(九)](https://blog.heiye.site/article/6f6c8f0a.html) | 黑夜 |
240+
| 登录 | [手机验证码登录原理(十)](https://blog.heiye.site/article/b0bd063d.html) | 黑夜 |
241+
| 登录 | [手机号码一键登录原理(十一)](https://blog.heiye.site/article/de27e5eb.html) | 黑夜 |
242+
| 登录 | [app手机号码登录区分新用户(十二)](https://blog.heiye.site/article/d3bfb199.html) | 黑夜 |
243+
| 订单 | [订单过期自动更新状态(十三)](https://blog.heiye.site/article/f567d34f.html) | 黑夜 |
244+
| 计数器 | [基于Redis计数器的实现(十四)](https://blog.heiye.site/article/5fc6d5d6.html) | 黑夜 |
245+
| MySQL分页 | [MySQL分页查询优化(十五)](https://blog.heiye.site/article/121835cc.html) | 黑夜 |
246+
| 限流算法 | [基于Golang实现的漏桶算法(十六)](https://blog.heiye.site/article/7c4f38da.html) | 黑夜 |
247+
| 限流算法 | [基于Golang实现的令牌桶算法(十七)](https://blog.heiye.site/article/112f9fb6.html) | 黑夜 |
248+
| 系统设计 | [如何设计拼单服务(十八)](https://blog.heiye.site/article/7bba2c37.html) | 黑夜 |
249+
| 系统设计 | [如何设计短链服务(十九)](https://blog.heiye.site/article/7de561a6.html) | 黑夜 |
250+
| 系统设计 | [如何设计视频弹幕服务(二十)](https://blog.heiye.site/article/9a691261.html) | 黑夜 |
251+
| MySQL | [MySQL并发事务写引发的问题(二十一)](https://blog.heiye.site/article/3e3b3d85.html) | 黑夜 |
252+
| 热key | [高并发热key的问题(二十二)](https://blog.heiye.site/article/d2e3e1b2.html) | 黑夜 |
253+
| 库存 | [高并发情况下如何扣减库存(二十三) ](https://blog.heiye.site/article/6d6a84b3.html) | 黑夜 |
251254

252255
## 🙈 与我联系
253256

0 commit comments

Comments
 (0)