Skip to content

Commit

Permalink
update es
Browse files Browse the repository at this point in the history
  • Loading branch information
rbmonster committed Mar 15, 2022
1 parent fb55875 commit aa5f45f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/other/MYSQL.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ MySQL可以分为Server层和存储引擎层两部分
- Server层包括连接器、查询缓存、分析器、优化器、执行器等,涵盖MySQL的大多数核心服务功能,以及所有的内置函数(如日期、时间、数学和加密函数等),所有跨存储引擎的功能都在这一层实现,比如存储过程、触发器、视图等。
- 存储引擎层负责数据的存储和提取。其架构模式是插件式的,支持InnoDB、MyISAM、Memory等多个存储引擎。现在最常用的存储引擎是InnoDB,它从MySQL5.5.5版本开始成为了默认存储引擎

MySQL的一个设计思想:如果内存够用,就要多利用内存,尽量减少磁盘访问。
MySQL的一个设计思想:如果内存够用,就要多利用内存,尽量减少磁盘访问。
### Server层基本架构
1. 连接器:登陆数据库的连接验证,完成经典的TCP握手后,连接器就要开始认证你的身份。
```mysql -h$ip -P$port -u$user -p```
Expand Down

0 comments on commit aa5f45f

Please sign in to comment.