1. Index 1.1 Concept
In layman's terms, the relationship between indexes and tables and data in a database is similar to the relationship between books (tables), book contents (data), and book catalogs (indexes) on a bookshelf. 1.2 FunctionCreating indexes in a database system has the following main functions:
1.3 Principles of Indexing 1.3.1 Reducing the number of disk accesses is the core idea of building an index The purpose of an index is to facilitate querying. 1.3.2 B+ Tree is suitable for implementing the underlying indexReducing the number of accesses to data is an important idea when implementing indexing. Next, we will analyze several data structures to find a more suitable data structure for implementing indexing. Binary Search Tree: Since the binary search tree may be a single-branch tree, the time complexity is O(N) AVL Tree:
Red-black tree:
Hash table:
So far, it seems that only AVL tree or red-black tree is more suitable for the implementation of MySQL index, and the search efficiency of these two data structures is directly determined by the height of the tree. Therefore, if the data increases, the height of the tree will also increase. For further optimization, you can use an N-ary search tree to reduce the height of the tree, that is, reduce disk IO to improve search efficiency. B-Tree: B-tree is a type of N-ary search tree B-tree example structure: Used in indexes, each node represents a record Characteristics of B-tree:
B+ Tree: B+ tree is a special N-ary search tree, an improved version of B tree. B+ tree example structure: Improvements of B+ tree over B tree:
Advantages of B+ Tree:
1.4 Applicable Scenarios
1.5 Usage StatementsReplenish: When creating 1.5.1 View Indexgrammar: show index from table name; Example: 1.5.2 Creating an Indexgrammar: create index index name on table name (field name); Example: 1.5.3 Deleting an Indexgrammar: drop index index name on table name; Example:
2. Transactions 2.1 ConceptThings: It is a very broad concept in computers, generally referring to things to be done or things done. In a relational database, a transaction can be a SQL statement or a group of SQL statements or an entire program. In layman's terms, for example, in a bank transfer operation, A transfers 500 yuan to B, then this operation actually includes two operations: A's account balance decreases by 500 yuan and B's account balance increases by 500 yuan. Things are equivalent to packaging this series of actions into a whole, either doing nothing or doing everything. 2.2 Why use transactions?Using the above bank transfer example, assuming that the operation of reducing 500 yuan from account A is successful, but the operation of increasing 500 yuan from account B is not successful, then the transfer operation is a failure. The core characteristic of things is: packing a series of operations together to form a whole, either all of them are done or none of them are done. Do nothing means: if an operation fails, the intermediate state at that time will be secretly restored Therefore, using things can ensure that a series of operations will not be completed only partially, it will either be completed completely or not completed at all. 2.3 Four major attributesA transaction is the basic unit of recovery and concurrency control. It has four properties: atomicity, consistency, persistence, and isolation. At the heart of things is atomicity 2.3.1 Atomicity
The core of things is atomicity, the core of atomicity is to roll back to the intermediate state, the core of rolling back to the intermediate state is rollback, and the core of rollback is to remember each step of the operation 2.3.2 Consistencyconcept: A transaction must change the database from one consistent state to another consistent state. Consistency and atomicity are closely related. Before and after executing a transaction, the data in the current table is in a reasonable state 2.3.3 Persistenceconcept: Persistence, also known as The data of transaction operations are directly operated on the hard disk, and the data on the hard disk is persistent. 2.3.4 Isolationconcept: The execution of a transaction cannot be interfered with by other transactions. That is, the operations and data used within a transaction are isolated from other concurrent transactions, and concurrently executed transactions cannot interfere with each other. 2.4 UsageOpen things: start transaction; Execute multiple SQL statements Rollback or commit -- Rollback: Indicates that all the above SQL statements fail to rollback; -- Submit: Indicates that all the above SQL statements are successfully committed; This is the end of this article about MySQL database indexes and transactions. For more relevant MySQL indexes and transactions, please search for previous articles on 123WORDPRESS.COM 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 simple example of using js to get the time of the last week, month and three months
>>: Install ethereum/Ethereum from scratch under CentOS7
1. New and old domain name jump Application scena...
The purpose of setting up MySQL query cache is: C...
Understand this Perhaps you have seen this in oth...
In this article, I will show you how to develop a...
1. E-Commerce Icons 2. Icon Sweets 2 3. Mobile Ph...
mysql 8.0.22 winx64 installation and configuratio...
Table of contents Demand background Thought Analy...
Preface To solve the single point of failure, we ...
Here are a few ways to remove it: Add the link dir...
Table of contents 1. The reason why the limit is ...
Background: I'm working on asset reporting re...
Open the centos yum folder Enter the command cd /...
As the Internet era becomes more mature, the deve...
This document records the installation and config...
What is a big deal? Transactions that run for a l...