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 InnoDB engine in mysql

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article introduces the relevant knowledge of "what are the characteristics of the InnoDB engine in mysql". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

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.

This is the end of the content of "what are the characteristics of the InnoDB engine in mysql". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

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

Development

Wechat

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

12
Report