1. What is it?
1.1 RDBMS
1. Data appears in table form 2. Each line is a record name 3. Each column is the data field corresponding to the record name 4. Many rows and columns make up a form 5. Several forms make up the database 1.2 MySQL database
2. Working Mechanism2.1 Overall architecture diagram (C/S architecture)
A common toolkit that provides the ability to connect to a MySQL server
MySQL instance, the MySQL server process that actually provides data storage and data processing functions
The MySQL server daemon runs in the background. It manages client requests. mysqld is a multi-threaded process that allows multiple sessions to connect, listens on ports, and manages MySQL instances.
The memory space required by MySQL is dynamic, such as innodb_buffer_pool_size (from 5.7.5), key_buffer_size. Each session has a unique execution plan, and we can only share data sets within the same session scope.
Each client connection is assigned a session, which is dynamically allocated and recycled. Used for query processing, each session has a buffer at the same time. Each session is executed as a thread
Detect SQL statement syntax and generate SQL_ID for each SQL statement. User authentication also occurs at this stage.
Create an efficient execution plan (depending on the storage engine). It will rewrite the query. For example: InnoDB has a shared buffer, so the optimizer will first extract from the pre-cached data. Using the table statistics optimizer will generate an execution plan for the SQL query. User permission checks also occur at this stage.
Cache object metadata and statistics
Share the same query statement in memory. If the exact same query hits the cache, the MySQL server will retrieve the result directly from the cache. The cache is shared between sessions, so a result set generated for one client can be used by another client. The query cache is based on SQL_ID. Writing SELECT statements to a view is a good example of query caching.
Cache table index. MySQL keys are indexes. If the index data size is small, it will cache the index structure and leaf nodes (which store index data). If the index is large, it will only cache the index structure, usually used by the MyISAM storage engine 2.2 Network Protocol2.2.1 Communication Protocol
2.2.2 Message FormatProtocol header: Each protocol header has 4 bytes
The first three bytes indicate the length of the data part (excluding the protocol header). The maximum length that can be represented by three bytes is 16M-1 (2^24 - 1). If the data part to be sent is larger than this length, it needs to be unpacked, with each 16M-1 length as one packet. When the receiving end receives data, if it detects that the length of the packet is 16M-1, it means that there is more data to follow, until the data packet with a length of <16M-1 is received. This means that the data length of the last packet may be 0.
1 byte, starting from 0 and increasing by one. When a new SQL is sent and the database is reconnected, the value is cleared to 0 (function sql/Net_serv.cc: net_clear). Data Type: In addition to fixed-length integers or strings, there are several other types of data. (Fixed-length field data storage and access: include/Mybyte_order.h: store value intstore, get value: intkorr, multi-byte processing is based on little-endian priority) 1. The variable-length integer access to this type of data is in the function: sql-common/Pack.c: Store integer: net_store_length Read integer: net_field_length If the value is less than 251, store the value directly in one byte. If 251<=value<2^16, use 3 bytes to store, the first byte is 252, and the other 2 bytes store the integer content. If 2^16<=value<2^24, use 4 bytes to store, the first byte is 252, and the other 3 bytes store the integer content. If 2^24<=value<2^64, use 9 bytes to store, the first byte is 255, and the other 8 bytes store the integer content. If the first byte is 251, it means that the integer field is null. If the first byte is 255, it means that this byte is the first byte of the ERR packet. 2. String with encodable length The length of the string is encoded using a variable-length integer. 2.3 SQL Syntax
Query and update instructions make up the DML portion of SQL: SELECT - Get data from a database table UPDATE - Update data in a database table DELETE - Delete data from a database table INSERT INTO - Insert data into a database table The Data Definition Language (DDL) portion of SQL gives us the ability to create or delete tables. We can also define indexes (keys), specify links between tables, and impose constraints between tables. The most important DDL statements in SQL: CREATE DATABASE - creates a new databaseALTER DATABASE - modifies a databaseCREATE TABLE - creates a new tableALTER TABLE - alters (changes) a database tableDROP TABLE - deletes a tableCREATE INDEX - creates an index (search key)DROP INDEX - deletes an index 3. SummaryThis article explains what MySQL is from a macro and usage perspective, and will be discussed in depth later. Please also pay more attention to more content on 123WORDPRESS.COM You may also be interested in:
|
<<: Two problems encountered when deploying rabbitmq with Docker
>>: How to use CSS attribute value regular matching selector (tips)
Background: I wonder if you have noticed that if ...
This article example shares the specific code for...
I believe that everyone needs to reinstall MySQL ...
HTML5 adds a native placeholder attribute for inp...
Table of contents illustrate 1. Enable Docker rem...
Table of contents Multi-application deployment 1-...
1. Open the CentOS 7 virtual machine. 2. Log in t...
In this article, we will look at how to develop a...
1. Compile proto Create a new proto folder under ...
1. Command Introduction The passwd command is use...
Table of contents 1. What is a closure? 2. The ro...
There are many reasons for slow query speed, the ...
MySQL download address: https://obs.cn-north-4.my...
Table of contents 1. What is an index signature? ...
The rewrite module is the ngx_http_rewrite_module...