当前位置:网站首页>MySQL optimization
MySQL optimization
2022-06-24 05:42:00 【Yuehai Street Fahrenheit】
If you can build a picture in your mind MySQL The architecture of how the components work together , Helps to understand MySQL The server . The following figure shows MySQL The logical architecture diagram .
MySQL The logic architecture is divided into three layers , The top layer is the client layer , Is not MySQL Unique , Such as : Connection processing 、 Authorized certification 、 Security and other functions are handled in this layer .
MySQL Most of the core services are in the middle tier , Including query parsing 、 analysis 、 Optimize 、 cache 、 Built in functions ( such as : Time 、 mathematics 、 Functions like encryption ). All cross storage engine functions are also implemented at this level : stored procedure 、 trigger 、 View etc. .
At the bottom is the storage engine , He is responsible for MySQL Data storage and extraction in . and Linux The file system under is similar to , Each storage engine has its advantages and disadvantages . The middle service layer passes through API Communicating with the storage engine , these API The interface masks the differences between different storage engines .
MySQL Query process of
mysql Query process of
Next, let's talk about optimization methods
1.Scheme Design and data type optimization
Choose data type as long as you follow the principle of small and simple , Smaller data types are usually faster , Less disk usage 、 Memory , What is needed in handling CPU There are fewer cycles . The simpler the data type, the less CPU cycle , such as , Integer is cheaper than character operation , Thus, integers are used to store ip Address , Use DATETIME To store time , Instead of using strings .
2. Create high-performance indexes
The index is to improve MySQL An important way to query performance , But too many indexes can lead to high disk utilization and high memory consumption , This affects the overall performance of the application . Try to avoid thinking about adding indexes afterwards , Because you may need to monitor a lot of SQL To locate the problem , And the time of adding index must be much longer than the time of adding index initially , It can be seen that the addition of index is also very technical .
3. Specific types of query optimization COUNT() Inquire about
COUNT() Probably the most misunderstood function , It has two different functions , One is to count the number of column values , The second is to count the number of lines . When counting column values , The column value is required to be non empty , It doesn't count NULL. If you confirm that the expression in parentheses cannot be empty , It's actually counting lines . The simplest is when using COUNT(*) when , It's not expanded into all the columns as we think , actually , It ignores all columns and counts the number of rows directly .
4. Optimize associated queries
In the big data scenario , Tables are associated with each other through a redundant field , It's better than using it directly JOIN Better performance . If you really need to use associated queries , Here's the thing to watch out for : Make sure ON and USING There is an index on the column in the sentence . When you create an index, you need to consider the order of associations . Watch A And table B Use column c When connected , If the order of optimizer association is A、B, Then there's no need to be A Create an index on the corresponding column of the table . Indexes that are not used can bring extra burden , Generally speaking , Unless there is any other reason , Just create the index on the corresponding column of the second table in the associated order ( The specific reasons are analyzed below ). Make sure that any GROUP BY and ORDER BY The expression in involves only columns in a table , such MySQL It's possible to use indexes to optimize .
5. Optimize LIMIT Pagination
When paging is needed , You usually use LIMIT Plus the offset to achieve , At the same time, add the right ORDER BY Words and expressions . If there is a corresponding index , Usually the efficiency will be good , otherwise ,MySQL A lot of file sorting operations need to be done .
6. Optimize UNION
MySQL Handle UNION The strategy is to create a temporary table first , Then insert each query result into the temporary table , Finally, we will do the inquiry . So many optimization strategies are UNION There's no way to be very good in the query . It is often necessary to manually set WHERE、LIMIT、ORDER BY Wait for words “ Push down ” Go to each subquery , So that the optimizer can make full use of these conditions to optimize first .
Unless you really need the server to be de duplicated , Otherwise, we must use UNION ALL, without ALL keyword ,MySQL We will add a temporary table DISTINCT Options , This will cause the data of the whole temporary table to be uniqueness checked , The cost of doing so is very high . Of course, even if you use ALL keyword ,MySQL Always put the results in a temporary table , Then read out , And back to the client . Although many times there is no need , For example, sometimes you can directly return the results of each subquery to the client .
边栏推荐
- Easy to understand JDBC tutorial - absolutely suitable for zero Foundation
- What domain name is com? How to register a domain name
- Wang Wei, senior architect of coding Devops, was selected as the first batch of tutors in Mulan open source community
- Edgegallery: MEC open source platform extends 5g capability to the edge
- Learning routes and materials for cloud native O & M engineers
- How to register an overseas domain name what should be paid attention to when registering a domain name
- Distributed background task load balancing
- How to set the secondary domain name of the website? What should I pay attention to when setting the domain name?
- How to check the Chinese domain name of the website and through what channels?
- What does it mean that the domain name is being walled? How to solve the problem of domain name by wall?
猜你喜欢
What cloud native knowledge should programmers master?

How should we learn cloud native in 2022?
Easy to understand JDBC tutorial - absolutely suitable for zero Foundation
Learning routes and materials for cloud native O & M engineers

Answer questions! This article explains the automated testing framework in software testing from beginning to end
随机推荐
Supply chain innovation of industrial Internet cloud computing
How to register a secondary domain name? What are the precautions when registering?
Net is what domain name? What is the standard of a good domain name?
PXE introduction and use
Easy to understand JDBC tutorial - absolutely suitable for zero Foundation
Threat discovery under automated data analysis
Error 0xc0000013, 0xc000007b, etc. due to the conflict between the CD-ROM drive letter and the drive letter in the business program path
What is a domain name address? What is the reason for using a domain name address?
Live video: real time large screen analysis based on streaming computing Oceanus (Flink)
What are the advantages of building a private cloud platform?
How to apply for a domain name? Why should domain names be filed in advance?
Will cloud server hosting become the mainstream?
How to check the Chinese domain name of the website and through what channels?
What domain name is com? How to register a domain name
How to check the school domain name? Are all school domain names unified?
What is domain name resolution? How much does domain name registration cost
What is the domain name of Org? Why do I need domain name resolution
Wang Wei, senior architect of coding Devops, was selected as the first batch of tutors in Mulan open source community
What does it mean that the domain name is being walled? How to solve the problem of domain name by wall?
How about the XYZ domain name? What are the advantages over other domain names?