[MySQL Overview] Principle level: MySQL

Article Directory

Seven test points of Mysql:
1. Transaction: acid + transaction isolation level + redo undo OK
2. Index (speed up retrieval efficiency) OK
3. Slow query + SQL optimization: efficient single-table query + efficient multi-table query, optimize sql Statement
4. Master-slave replication (read-write separation + cold and hot separation, both require master-slave replication): master-slave replication is implemented based on binlog
5. mysql log system
6, mysql architecture and innodb architecture
7, mysql data type
8 , Distributed database CAP principle, Base principle, theoretical things, just remember
9. Other
important is the first 5, the most important is the first 3.

There are a total of 15 mysql articles. The
most important ones are 11 articles, 4 articles are useless, one is an overview, and three are not the focus of the interview.

[001 MySQL transaction] MySQL transaction first

[002 MySQL index] MySQL index first

[002 MySQL Index] Classic interview questions: select count(*), involving query cost calculation

[003 Slow query + SQL optimization] From slow query to SQL optimization

[003 MySQL tuning] 21 MySQL tuning strategies (enough for interviews)

[004 MySQL master-slave replication] Binlog realizes master-slave replication

[005 MySQL log system] Three types of logs for MySQL (used for MySQL transaction and MySQL disaster recovery)

[006 MySQL Architecture] Principle level: MySQL underlying principle + InnoDB storage engine underlying principle

[007 MySQL data type] MySQL data type

[008 Distributed database] Distributed database

[009 MySQL other] MySQL other

Guess you like

Origin blog.csdn.net/qq_36963950/article/details/108307007
Recommended