Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What are the characteristics of mysql InnoDB

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

Most people do not understand the knowledge points of this article "what are the characteristics of mysql InnoDB?", so the editor summarizes the following content, detailed content, clear steps, and has a certain reference value. I hope you can get something after reading this article. Let's take a look at this "what are the characteristics of mysql InnoDB" article.

1. Insert cache to improve insert performance.

Insertbuffer is an enhanced version of insertbuffer, insertbuffer is only valid for inserts, and changebuffer is valid for insert/update/delete. The insert cache is valid only for non-unique and secondary indexes. Each insert is not written on the index page, but first determines whether the inserted nonclustered index page is in the cache. If so, insert it directly. If it does not exist, insert insertbuffer, merge at a certain frequency, and write back to disk.

2. Write twice to ensure the reliability of data pages operated by InnoDB storage engine.

The Double write is divided into two parts, one is the in-memory double write buffer with the size of 2MB, and the other is the continuous 128data pages in the shared table space on the physical disk, that is, the size of the two regions (also 2MB).

3. Adaptive hash index, hash is equivalent query.

The InnoDB storage engine monitors queries for each index page on the table. If it is observed that building an hash index will lead to a speed increase, then building the corresponding index is called an adaptive hash index.

4. Asynchronous IO to improve disk operation performance.

The current database system generally uses asynchronous IO to handle disk operations, and so is the InnoDB storage engine. The advantage of AIO is that it reduces the time required for SQL query.

5. Refresh adjacency pages

When a dirty page is refreshed, the InnoDB storage engine detects whether there are other dirty pages in the area, and if so, refreshes it together.

The above is the content of this article on "what are the characteristics of mysql InnoDB". I believe we all have a certain understanding. I hope the content shared by the editor will be helpful to you. If you want to know more about the relevant knowledge, please follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report