MySQL paging queries are usually implemented through limit. limit accepts 1 or 2 integer parameters. If it is 2 parameters, the first one specifies the offset of the first returned record row, and the second one is the maximum number of returned record rows. The initial record row offset is 0. For compatibility with PostgreSQL, limit also supports limit # offset #. question: For small offsets, there is no problem in directly using limit to query. However, as the amount of data increases, the offset of the limit statement will become larger and the speed will be significantly slower as the paging progresses. Optimization idea: Avoid scanning too many records when the data volume is large Solution: Subquery paging method or JOIN paging method. The efficiency of JOIN paging and subquery paging is basically at the same level, and the time consumed is also basically the same. Here is an example. Generally, the primary key of MySQL is an auto-incrementing numeric type. In this case, the following method can be used for optimization. Take a table with 60,000 records in a real production environment as an example to compare the query time before and after optimization: -- Traditional limit, file scanning [SQL] SELECT * FROM tableName ORDER BY id LIMIT 50000,2; Affected rows: 0 Time: 0.171s -- Subquery method, index scan [SQL] SELECT * FROM tableName WHERE id >= (SELECT id FROM tableName ORDER BY id LIMIT 50000 , 1) LIMIT 2; Affected rows: 0 Time: 0.035s -- JOIN paging method [SQL] SELECT * FROM tableName AS t1 JOIN (SELECT id FROM tableName ORDER BY id LIMIT 50000, 1) AS t2 WHERE t1.id <= t2.id ORDER BY t1.id LIMIT 2; Affected rows: 0 Time: 0.036s It can be seen that the performance has been improved many times after optimization. Optimization principle: Subqueries are performed on the index, while normal queries are performed on the data files. Generally speaking, index files are much smaller than data files, so they can be operated more efficiently. Because all field contents need to be retrieved, the first method needs to span a large number of data blocks and retrieve them, while the second method basically retrieves the corresponding content directly after locating it according to the index field, which naturally greatly improves efficiency. Therefore, to optimize limit, instead of using limit directly, first get the offset id, and then use limit size directly to get data. In actual project use, you can use a similar strategy pattern to handle paging. For example, if there are 100 records per page, if the number of pages is less than 100, the most basic paging method is used; if the number of pages is greater than 100, the subquery paging method is used. The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Implementation of nginx worker process loop
>>: Detailed explanation of desktop application using Vue3 and Electron
This article mainly introduces an example of how ...
1. VMware download and install Link: https://www....
Linux and Unix are multi-user operating systems, ...
Table of contents What is a trigger Create a trig...
RocketMQ is a distributed, queue-based messaging ...
Let me tell you about a recent case. A game log l...
How to introduce svg icons in Vue Method 1 of int...
Preface Every developer who comes into contact wi...
Every website usually encounters many non-search ...
1. Docker Network Mode When docker run creates a ...
Development Trends: html (Hypertext Markup Languag...
The system environment is server2012 1. Download ...
1. Install MySQL: Use the following three command...
Vulnerability Details VSFTP is a set of FTP serve...
Table of contents Constructing payment methods us...