OverviewAn index is a structure that sorts the values of one or more columns in a database table. An index can be used to quickly access specific information in a database table. Index data structure Binary TreeA binary tree is an ordered tree in which the degree of the nodes in the tree is no more than 2. It is the simplest and most important tree. The recursive definition of a binary tree is: a binary tree is an empty tree, or a non-empty tree consisting of a root node and two non-intersecting left and right subtrees of the root; the left and right subtrees are also binary trees. For the array {1,2,3,4,5} the data structure will become a linked list Features:
Red-Black TreeA red-black tree is a specific type of binary tree, which is a structure used in computer science to organize blocks of data such as numbers. If a binary search tree is a red-black tree, then any of its subtrees must be a red-black tree. The red-black tree is a variant of a balanced binary search tree. The height difference between its left and right subtrees may be greater than 1, so the red-black tree is not a strictly balanced binary tree (AVL), but the cost of balancing it is low, and its average statistical performance is stronger than AVL. Since each red-black tree is a binary sorted tree, when searching a red-black tree, the search algorithm applied to an ordinary binary sorted tree can be used, and color information is not required during the search process. The red-black tree data structure is as follows:
Features:
B-Tree
B+Tree
Key words: Order within nodes, leaf node pointer links, non-leaf node storage index (redundant) Query the size of the data page of the mysql index: mysql> show global status like 'Innodb_page_size'; +------------------+-------+ | Variable_name | Value | +------------------+-------+ | Innodb_page_size | 16384 | +------------------+-------+ Why set 16kb? Hash
index InnoDB Index Implementation (Clustering)The table data file itself is an index structure file organized by B+Tree Clustered index - leaf nodes contain complete data records Why does an InnoDb table have to have a primary key, and is it recommended to use an integer auto-increment primary key?
Why do leaf nodes of non-primary key index structures store primary key values?
Primary key index diagram:
Non-primary key index diagram picture If the query is based on name = Alice:
Two data files: .frm mainly stores table structure information .ibd mainly stores indexes and data MyISAM index files (nonclustered) Index files and data files are separate (non-clustered)
Three data files: .frm data structure file .myd files are mainly used to store data .myi files mainly store index information Clustered and non-clustered indexesfeature: Clustering/non-clustering mainly refers to whether the index file is together with the data file. In terms of query efficiency, clustered indexes will not query across files, which will be faster. Joint/Compound IndexesMultiple fields are organized into a common index
Why is the leftmost prefix principle used in this way? The indexed data is sorted and cannot be used if fields are skipped. Example: where name = 'Jeff' and age = 22 -- hits the index where age = 30 and postatin='manager' -- does not hit the index where postation = 'dev' -- does not hit the index ReferencesBaidu Encyclopedia SummarizeThis is the end of this article about MySQL index data structure. For more relevant MySQL index data structure content, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: A brief introduction to the general process of web front-end web development
>>: Sample code for easily implementing page layout using flex layout
Use the Linux chmod command to control who can ac...
Summary: What method should be used for MySQL JDB...
Server Status Analysis View Linux server CPU deta...
Problem code Look at a closure problem code cause...
What is text wrapping around images? This is the ...
Table of contents Preface: 1.Brief introduction t...
Table of contents 1.union: You can add query resu...
Table of contents 1 Promise Interrupt the call ch...
After installing the MySQL database using the rpm...
Table of contents 1. What is a doubly linked list...
Preface When using Docker in a production environ...
<br /> The website access speed can directly...
Table of contents Preface 1. Get the current time...
State Hooks Examples: import { useState } from ...
This article mainly introduces the implementation...