程序员潇然 发表于 2022-11-22 16:18:43

InnoDB架构体系设计分析简介(三)

InnoDB是MYSQL 自5.6开始的默认存储引擎,而且也适用于大多数场景。

所以了解InnoDB的架构也是尤为重要的。

分为内存部分结构和磁盘结构两部分

图片地址:`https://dev.mysql.com/doc/refman/8.0/en/innodb-architecture.html`

!(data/attachment/forum/202211/22/163026u4esebgb8r1zg8cc.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/300 "image.png")

`https://dev.mysql.com/doc/refman/8.0/en/innodb-in-memory-structures.html`

`https://dev.mysql.com/doc/refman/8.0/en/innodb-on-disk-structures.html`

!(data/attachment/forum/202211/22/163107qa7s7tm1cp5swsce.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/300 "image.png")

图中的一些核心关键词,比如 `Buffer pool`, `Redo/Undo logs`   等等, 都是InnoDB的底层核心内容,后续逐步介绍,本文旨在引出相关概念,官方文档对这些也都有专门的介绍。

!(data/attachment/forum/202206/16/141330jha7st9soow8772i.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/300 "common_log.png")
`转载务必注明出处:程序员潇然,疯狂的字节X,https://crazybytex.com/thread-230-1-1.html `
页: [1]
查看完整版本: InnoDB架构体系设计分析简介(三)