1. Overview of the pageThe data we insert into MySQL is eventually stored in the page. In the design of InnoDB, pages are connected through a doubly linked list. The rows of data stored in the page are connected through a singly linked list. The How does that page achieve quick search? In the current page, you can traverse through the single linked list connecting each record in 2. Infimum and Supremum Someone might say that you did not solve the problem by traversing Of course, MySQL has also taken this problem into consideration, so there is actually an area in the page called With 3. Use Page Directory Someone might ask, aren’t all your I have to say that this is indeed a problem, but it is one that MySQL has already considered. Yes, traversing one by one is indeed very inefficient. To solve this problem, MySQL adds another area to the page As the name suggests, The design of Page Directory reminds you of another data structure, the skip list, except that only one layer of index is abstracted here. MySQL will create the corresponding Slot when new data is added. With However, this efficiency is much higher than the original version we just talked about. 4. The true appearance of the pageIf I throw out the various components and concepts of the page right at the beginning, I myself cannot accept it, as it seems very rigid. Secondly, people who are not familiar with the page may not understand why the page is designed in this way. So I presented the general appearance of the page to you according to a set of ideas for querying a piece of data. In fact, there are many other fields stored on the page, as well as other areas, but these will not affect our understanding of the page. Therefore, after having a clearer understanding of the page, we can take a look at what the real page looks like. The above picture shows the actual composition of the page. In addition to what we mentioned before, there are some more that we haven’t talked about before, such as 4.1、File Header In fact, In fact, I am quite resistant to listing a bunch of parameters and telling you the size of this one and what that one is used for. For those of us who need to understand the page in detail, it is enough to know only two for now, which are:
These two variables are the previous page pointer and next page pointer mentioned above. They are called pointers for the convenience of understanding. In fact, they are the offset of the page on the disk. 4.2 Page Header Compared with All of them are listed here because understanding the meaning of these parameters and why we need to set them can help us better understand the principles and structure of the page. The details can be explained by looking at the pictures. I also want to complain here. Too many blogs are too rigid in their writing. For example, the parameter There are two parameters that may be a bit confusing, namely 4.3、Infimum & Supremum Records As mentioned above, 4.4 User Records We have already discussed the concepts in We know that in a clustered index, the Key is actually arranged in the order of The answer is no, because this will reduce the efficiency of MySQL processing. The data in To express it in a diagram, it is roughly as follows: 4.5 Free Space This part is actually discussed in other modules in disguise. Initially, 4.6 Page DirectoryThis is not much different from what was discussed above, so I will skip it. 4.7 File TrailerThis is mainly to prevent the page from failing during the process of being flushed to disk due to extreme unexpected situations (network problems, fire, natural disasters), which may cause data inconsistency, that is, the formation of dirty pages. There is only one component inside: V. ConclusionAt this point, I think we have talked about everything about pages. I personally think that understanding the underlying page principles will help us use MySQL more friendly and rationally, so that it can exert its ultimate performance. The above is a brief discussion of the detailed content of the shallow entry and deep exit principle of MySQL. For more information about the MySQL page principle, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: How to Completely Clean Your Docker Data
>>: CSS positioning layout (position, positioning layout skills)
This article shares the specific code of Vue.js t...
1. Usage: (1) EXISTS usage select a.batchName,a.p...
background Before we know it, a busy year is comi...
Preview versions of Safari (Technology Preview 10...
Table of contents Preface Function Overloading Ma...
Copy code The code is as follows: <HTML> &l...
This article example shares the specific code of ...
I chose node.js to build the server. Friends who ...
1 Introduction Apache Storm is a free, open sourc...
Many organizations have the need to back up file ...
When MySQL queries tens of millions of data, most...
The full name of Blog should be Web log, which mea...
In most application scenarios, we need to back up...
We all know that we need to understand the proper...
This article shares the specific code of Vue to r...