摘要: (Spring Bean的创建过程) #Spring Bean的创建过程 以下代码是学习Spring的hello world,第一行代码中的ApplicationContext会管理项目中的bean,本文从Bean的创建过程展开... AnnotationConfigApplicationConte 阅读全文
posted @ 2022-02-12 22:17 LALALA823 阅读(889) 评论(0) 推荐(0) 编辑
摘要: (Mysql数据库索引底层数据结构和算法) 索引 索引是帮助Mysql高效获取数据的排好序的数据结构 常用的数据结构 https://www.cs.usfca.edu/~galles/visualization/Algorithms.html 二叉树 红黑树 Hash B-tree B+tree 聚 阅读全文
posted @ 2022-02-12 21:22 LALALA823 阅读(51) 评论(0) 推荐(0) 编辑
摘要: @[TOC](Mysql Explain详解) 使用EXPLAIN关键字可以模拟优化器执行SQL语句,分析查询语句或是结构的性能瓶颈 本文基于Mysql5.7版本 # Explain 常用列 ## id select的序列号,有几个查询就有几个id,id越大优先级越高,id相同则从上往下执行,id为 阅读全文
posted @ 2022-02-12 21:20 LALALA823 阅读(63) 评论(0) 推荐(0) 编辑