search
HomeDatabaseMysql TutorialDetailed introduction to the working principle of mysql
Detailed introduction to the working principle of mysqlAug 21, 2019 pm 02:09 PM
working principle

1. Components of Mysql

Mysql consists of SQL interface, parser, optimizer, cache, and storage engine.

2. Mysql working principle diagram

Detailed introduction to the working principle of mysql

##3. Description of each component of Mysql schematic diagram

3-1: connectors

Interact with sql statements in other programming languages, such as php, java, etc.

3-2:Management Serveices & Utilities

System management and control tools

3-3、Connection Pool

Manage buffer users Connection, thread processing and other requirements that require caching

3-4. SQL Interface (SQL interface)

Accepts the user's SQL command and returns the results that the user needs to query. For example, select from is to call SQL Interface

3-5, Parser (parser)

When the SQL command is passed to the parser, it will be verified and parsed by the parser.

Main functions of the parser:

a. Decompose the SQL statement into a data structure and pass this structure to subsequent steps. The subsequent transmission and processing of SQL statements are based on this structure

b. If an error is encountered during the decomposition, it means that the sql statement is unreasonable and the statement will not continue to be executed.

3-6. Optimizer (Query Optimizer)

The SQL statement will use the query optimizer to optimize the query before querying (generating multiple execution plans, and finally the database will choose the most optimized plan to execute and return the results as soon as possible) He uses "select-projection" -Join" strategy for querying.

You can understand it with an example: select uid,name from user where gender = 1;

This select query first selects based on the where statement, instead of querying all the tables first. Perform gender filtering

This select query first performs attribute projection based on uid and name, instead of removing all attributes and then filtering

Connect these two query conditions to generate the final query result.

3-7. Cache and Buffer (query cache)

If the query cache has a hit query result, the query statement can directly fetch data from the query cache.

This caching mechanism is composed of a series of small caches. For example, table cache, record cache, key cache, permission cache, etc.

3-8. Engine (storage engine)

The storage engine is the specific subsystem in MySql that deals with files, and it is also the MySQL One of the most unique places.

Mysql's storage engine is plug-in. It customizes a file access mechanism based on an abstract interface of the file access layer provided by MySql AB (this access mechanism is called a storage engine).

4. SQL statement execution process

The database is usually not used directly, but other programming languages ​​call mysql through SQL statements, which is processed by mysql and returned for execution. result. So how does Mysql process the SQL statement after it receives it?

First, the request of the program will interact with it through the connectors of mysql. After the request is received, it will be temporarily stored in the connection pool (connection pool) and processed by the processor (

Management Serveices & Utilities) manage. When the request enters the processing queue from the waiting queue, the manager will throw the request to the SQL interface (SQL Interface). After the SQL interface receives the request, it will hash the request and compare it with the results in the cache. If there is a complete match, the processing result will be returned directly through the cache; otherwise, a complete process will be required:

(1) The SQL interface is thrown to the subsequent interpreter (Parser). The interpreter will determine whether the SQL statement is correct or not, and if it is correct, it will convert it into a data structure.

(2) After the interpreter is processed, it comes to the optimizer (Optimizer) behind, which will generate multiple execution plans. In the end, the database will choose the most optimized plan for execution and return the results as soon as possible.

(3) After determining the optimal execution plan, the SQL statement can be handed over to the storage engine (Engine) for processing. The storage engine will obtain the corresponding data from the back-end storage device and return it to the original path. to the program.

5. Note

(1) How to cache query data

The storage engine processes the data and returns it to the program At the same time, it will also retain a copy of the data in the cache so that the next same request can be processed more quickly. The specific situation is that mysql will hash the query statement, execution results, etc., and keep them in the cache, waiting for the next query.

(2) The difference between buffer and cache

As you can see from the mysql schematic diagram, there are actually two buffers and caches in the cache. The difference between them:

To put it simply, buffer is a write cache and cache is a read cache.

(3) How to judge whether the required data has been cached in the cache

There may be a misunderstanding here. When processing SQL statements, in order to judge whether the query results have been cached, the entire process will be Go through it again, obtain the execution result, and then compare it with the required one to see if there is a hit. In this way, since no matter whether the query content is cached in the cache, you have to go through the entire process, what is the advantage of caching?

In fact, this is not the case. After the first query, mysql will hash the query statement and query results and keep them in the cache. After the SQL query arrives, it will be hashed in the same way. The two hash values ​​are compared. If they are the same, it is a hit and the query result is returned from the cache; otherwise, the entire process needs to be repeated.

I hope this article can provide some help to students who are learning databases. If there is something wrong in the article, please point it out. Thank you very much!

For more Mysql related questions, please visit the PHP Chinese website: mysql video tutorial

The above is the detailed content of Detailed introduction to the working principle of mysql. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:CSDN. If there is any infringement, please contact admin@php.cn delete
什么是 Microsoft Teams 中的对讲机及其工作原理?什么是 Microsoft Teams 中的对讲机及其工作原理?Apr 14, 2023 pm 12:31 PM

Microsoft Teams 上的对讲机是什么?顾名思义,新的 Walkie Talkie 功能让 Microsoft Teams 上的用户可以通过使用他们的声音与他们的团队成员进行实时交流,从而与他们联系。在频道中连接到 Walkie Talkie 的用户可以一次听一个即按即说格式的对方讲话。这样一来,只有一个人在说话的时候才能引起注意,而不会被其他人打断。微软将这一功能定

听诊器的工作原理是什么听诊器的工作原理是什么Aug 31, 2023 pm 02:37 PM

听诊器的工作原理是通过声学传感器将人体内部的声音转化成电信号,然后通过耳机或扩音器放大和传输这些信号给医生,它的工作原理基于声学原理,能够帮助医生听到内部声音并进行疾病诊断。听诊器的核心部件是声学传感器,通常由一个共振膜和一个接收器组成,共振膜是一个薄膜,通常由金属或塑料制成,它能够感受到人体内部的声音振动,当共振膜受到声波的作用时,它会产生微小的振动。

vue中keep-alive的工作原理及使用方法详解vue中keep-alive的工作原理及使用方法详解Jul 21, 2023 am 11:58 AM

Vue.js是一个流行的前端框架,提供了一些方便的功能来优化性能和提升开发效率。其中一个功能是keep-alive,它可以帮助我们在组件之间保留状态,从而减少不必要的渲染和请求。本文将详细介绍keep-alive的工作原理以及使用方法,并提供一些代码示例。一、keep-alive的工作原理在Vue.js中,每当我们切换组件时,组件都会被重新创建

深入了解Spring框架的架构与工作原理深入了解Spring框架的架构与工作原理Jan 24, 2024 am 09:41 AM

深入剖析Spring框架的架构与工作原理引言:Spring是Java生态系统中最受欢迎的开源框架之一,它不仅提供了一套强大的容器管理和依赖注入功能,还提供了许多其他功能,如事务管理、AOP、数据访问等。本文将深入剖析Spring框架的架构与工作原理,并通过具体的代码示例来解释相关概念。一、Spring框架的核心概念1.1IoC(控制反转)Spring的核心

计算机按工作原理可分为什么计算机按工作原理可分为什么Dec 07, 2020 am 10:24 AM

计算机按工作原理可分为数字计算机和模拟计算机。数字式电子计算机是当今世界电子计算机行业中的主流,其内部处理的是一种称为符号信号或数字信号的电信号,它有着运算速度快、运算精度高、通用性强等特点。模拟计算机是根据相似原理,用一种连续变化的模拟量作为被运算的对象的计算机;模拟计算机以电子线路构成基本运算部件。

了解Spring拦截器的原理和优点了解Spring拦截器的原理和优点Dec 30, 2023 pm 12:25 PM

探究Spring拦截器的工作原理及优势引言:Spring框架是Java开发中最常用的框架之一,它提供了丰富的功能和灵活性,使得开发者能够更加高效地开发应用程序。其中一个重要的组件就是拦截器(Interceptor)。本文将深入探讨Spring拦截器的工作原理和优势,同时给出具体的代码示例。一、Spring拦截器的工作原理Spring拦截器使用了面向切面编程(

交换机的工作原理是什么交换机的工作原理是什么Dec 26, 2023 am 11:56 AM

交换机的工作原理包括:1、数据帧接收和解析;2、转发表的更新;3、数据帧的转发;4、泛洪处理;5、维护连接。详细介绍:1、数据帧接收和解析,当交换机接收到一个数据帧时,它会首先对数据帧进行解析,提取出其中的源MAC地址和目的MAC地址等信息;2、转发表的更新,交换机内部维护着一个转发表,这个表记录了MAC地址与接口的对应关系;3、数据帧的转发等等。

了解PHP中散列查找算法的工作原理及实际应用场景。了解PHP中散列查找算法的工作原理及实际应用场景。Sep 19, 2023 pm 01:00 PM

了解PHP中散列查找算法的工作原理及实际应用场景概述:散列查找算法是一种常用的数据结构和算法,在PHP编程中也有着广泛的应用。它通过将关键字映射为数据结构中的索引位置来实现快速的查找操作。本文将介绍散列查找算法的工作原理和实际应用场景,并给出具体的代码示例。一、散列查找算法的工作原理散列查找算法的基本思想是通过一个散列函数将关键字映射到数据结构中的索引位置,

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.