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

Optimize paging query for comments

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

Share

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

Possible_keys, key, and key_len are all null. It can be seen that there are no indexes available on the table.

To calculate the degree of differentiation, the closer to 1, the better, which should be placed on the left side of the federated index.

Explain after the federated index is built:

The more pages you turn, the slower you are, and further optimize:

Premise of optimization: comment_id is the primary key of the product review table and has an overlay index

Principle:

Using the overlay index, take out the primary key comment_id, sort it, take out the desired data, and then sort it with the comment table through the primary key to extract other fields. The data overhead of this approach is: the result of the io + index paging of the index, that is, the io of the 15 rows of data corresponding to the table, is much less than the io before optimization. The advantage is that each page turn consumes basically the same resources and time.

Adapt to the scene:

When the query and sort fields, that is, the fields involved in the where clause and the order by clause, have corresponding override indexes. And it also adapts to this situation when the intermediate result set is very large.

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

Database

Wechat

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

12
Report