issues
search
TENCHIANG
/
blog
issue blog
10
stars
1
forks
source link
MySQL学习笔记
#32
Open
TENCHIANG
opened
5 years ago
TENCHIANG
commented
5 years ago
MySQL体系结构
Connection Pool
Management Services & Utilities
SQL Interface
Parser
Optimizer
Caches & Buffers
Pluggable Storage Engines
InnoDB(默认、支持事务)
MyISAM(不支持事务)
NDB(集群)
Memory
Infobright
NTSE
File System
InnoDB特性
支持事务
OLTP
行级锁(读不锁)
外健
MVCC
SQL四种隔离级别(REPEATABLE默认)
retx-key lock(避免幻读)
insert buffer
double write
adaptive hash index
read ahead(预读)
clustered(聚集)
MySQL体系结构
InnoDB特性