@@ -182,13 +182,13 @@ Github用户如果访问速度缓慢的话,可以转移到[码云](https://git
182182
183183### MySQL
184184
185- * ** [ 【推荐】MySQL/数据库 知识点总结] ( docs/database/MySQL.md ) **
186- * ** [ 阿里巴巴开发手册数据库部分的一些最佳实践] ( docs/database/阿里巴巴开发手册数据库部分的一些最佳实践.md ) **
187- * ** [ 一千行MySQL学习笔记] ( docs/database/一千行MySQL命令.md ) **
188- * [ MySQL高性能优化规范建议] ( docs/database/MySQL高性能优化规范建议.md )
189- * [ 数据库索引总结] ( docs/database/MySQL%20Index.md )
190- * [ 事务隔离级别(图文详解)] ( docs/database/事务隔离级别(图文详解).md )
191- * [ 一条SQL语句在MySQL中如何执行的] ( docs/database/一条sql语句在mysql中如何执行的.md )
185+ 1 . ** [ 【推荐】MySQL/数据库 知识点总结] ( docs/database/MySQL.md ) **
186+ 2 . ** [ 阿里巴巴开发手册数据库部分的一些最佳实践] ( docs/database/阿里巴巴开发手册数据库部分的一些最佳实践.md ) **
187+ 3 . ** [ 一千行MySQL学习笔记] ( docs/database/一千行MySQL命令.md ) **
188+ 4 . [ MySQL高性能优化规范建议] ( docs/database/MySQL高性能优化规范建议.md )
189+ 5 . [ 数据库索引总结] ( docs/database/MySQL%20Index.md )
190+ 6 . [ 事务隔离级别(图文详解)] ( docs/database/事务隔离级别(图文详解).md )
191+ 7 . [ 一条SQL语句在MySQL中如何执行的] ( docs/database/一条sql语句在mysql中如何执行的.md )
192192
193193### Redis
194194
@@ -203,11 +203,11 @@ Github用户如果访问速度缓慢的话,可以转移到[码云](https://git
203203
204204#### Spring
205205
206- - [ Spring 学习与面试] ( docs/system-design/framework/spring/Spring.md )
207- - ** [ Spring 常见问题总结] ( docs/system-design/framework/spring/SpringInterviewQuestions.md ) **
208- - [ Spring中 Bean 的作用域与生命周期] ( docs/system-design/framework/spring/SpringBean.md )
209- - [ SpringMVC 工作原理详解] ( docs/system-design/framework/spring/SpringMVC-Principle.md )
210- - [ Spring中都用到了那些设计模式?] ( docs/system-design/framework/spring/Spring-Design-Patterns.md )
206+ 1 . [ Spring 学习与面试] ( docs/system-design/framework/spring/Spring.md )
207+ 2 . ** [ Spring 常见问题总结] ( docs/system-design/framework/spring/SpringInterviewQuestions.md ) **
208+ 3 . [ Spring中 Bean 的作用域与生命周期] ( docs/system-design/framework/spring/SpringBean.md )
209+ 4 . [ SpringMVC 工作原理详解] ( docs/system-design/framework/spring/SpringMVC-Principle.md )
210+ 5 . [ Spring中都用到了那些设计模式?] ( docs/system-design/framework/spring/Spring-Design-Patterns.md )
211211
212212#### SpringBoot
213213
@@ -228,9 +228,7 @@ Github用户如果访问速度缓慢的话,可以转移到[码云](https://git
228228
229229#### SSO(单点登录)
230230
231- SSO(Single Sign On)即单点登录说的是用户登陆多个子系统的其中一个就有权访问与其相关的其他系统。举个例子我们在登陆了京东金融之后,我们同时也成功登陆京东的京东超市、京东家电等子系统。
232-
233- 相关阅读:[ SSO 单点登录看这篇就够了!] ( docs/system-design/authority-certification/sso.md )
231+ SSO(Single Sign On)即单点登录说的是用户登陆多个子系统的其中一个就有权访问与其相关的其他系统。举个例子我们在登陆了京东金融之后,我们同时也成功登陆京东的京东超市、京东家电等子系统。相关阅读:** [ SSO 单点登录看这篇就够了!] ( docs/system-design/authority-certification/sso.md ) **
234232
235233### 分布式
236234
@@ -251,24 +249,22 @@ SSO(Single Sign On)即单点登录说的是用户登陆多个子系统的其中
251249
252250#### 消息队列
253251
254- 消息队列在分布式系统中主要是为了接耦和削峰。
255-
256- - [ 消息队列总结] ( docs/system-design/data-communication/message-queue.md )
252+ 消息队列在分布式系统中主要是为了接耦和削峰。相关阅读: ** [ 消息队列总结] ( docs/system-design/data-communication/message-queue.md ) ** 。
257253
258254** RabbitMQ:**
259255
260- - [ RabbitMQ 入门] ( docs/system-design/data-communication/rabbitmq.md )
256+ 1 . [ RabbitMQ 入门] ( docs/system-design/data-communication/rabbitmq.md )
261257
262258** RocketMQ:**
263259
264- - [ RocketMQ 入门] ( docs/system-design/data-communication/RocketMQ.md )
265- - [ RocketMQ的几个简单问题与答案] ( docs/system-design/data-communication/RocketMQ-Questions.md )
260+ 1 . [ RocketMQ 入门] ( docs/system-design/data-communication/RocketMQ.md )
261+ 2 . [ RocketMQ的几个简单问题与答案] ( docs/system-design/data-communication/RocketMQ-Questions.md )
266262
267263** Kafka:**
268264
269- - ** [ Kafka 入门+SpringBoot整合Kafka系列] ( https://github.com/Snailclimb/springboot-kafka ) **
270- - [ Kafka系统设计开篇-面试看这篇就够了] ( docs/system-design/data-communication/Kafka系统设计开篇-面试看这篇就够了.md )
271- - [ 【加餐】Kafka入门看这一篇就够了] ( docs/system-design/data-communication/Kafka入门看这一篇就够了.md )
265+ 1 . ** [ Kafka 入门+SpringBoot整合Kafka系列] ( https://github.com/Snailclimb/springboot-kafka ) **
266+ 2 . [ Kafka系统设计开篇-面试看这篇就够了] ( docs/system-design/data-communication/Kafka系统设计开篇-面试看这篇就够了.md )
267+ 3 . [ 【加餐】Kafka入门看这一篇就够了] ( docs/system-design/data-communication/Kafka入门看这一篇就够了.md )
272268
273269#### API 网关
274270
@@ -284,9 +280,9 @@ SSO(Single Sign On)即单点登录说的是用户登陆多个子系统的其中
284280
285281> 前两篇文章可能有内容重合部分,推荐都看一遍。
286282
287- - [ 【入门】ZooKeeper 相关概念总结] ( docs/system-design/framework/ZooKeeper.md )
288- - [ 【进阶】Zookeeper 原理简单入门!] ( docs/system-design/framework/ZooKeeper-plus.md )
289- - [ 【拓展】ZooKeeper 数据模型和常见命令] ( docs/system-design/framework/ZooKeeper数据模型和常见命令.md )
283+ 1 . [ 【入门】ZooKeeper 相关概念总结] ( docs/system-design/framework/ZooKeeper.md )
284+ 2 . [ 【进阶】Zookeeper 原理简单入门!] ( docs/system-design/framework/ZooKeeper-plus.md )
285+ 3 . [ 【拓展】ZooKeeper 数据模型和常见命令] ( docs/system-design/framework/ZooKeeper数据模型和常见命令.md )
290286
291287#### 数据库扩展
292288
0 commit comments