php MySQL与分页效率
程序员文章站
2022-11-04 10:23:21
最基本的分页方式: select ... from ... where ... order ...
最基本的分页方式:
select ... from ... where ... order by ... limit ...
在中小数据量的情况下,这样的sql足够用了,唯一需要注意的问题就是确保使用了索引:
举例来说,如果实际sql类似下面语句,那么在category_id, id两列上建立复合索引比较好:
select * from articles where category_id = 123 order by id limit 50, 10
子查询的分页方式:
随着数据量的增加,页数会越来越多,查看后几页的sql就可能类似:
select * from articles where category_id = 123 order by id limit 10000, 10
一言以蔽之,就是越往后分页,limit语句的偏移量就会越大,速度也会明显变慢。
此时,我们可以通过子查询的方式来提高分页效率,大致如下:
select * from articles where category_id = 123 and id >= (
select id from articles order by id limit 10000, 1
) limit 10
----------------------------------------
实际可以利用类似策略模式的方式去处理分页,比如判断如果是一百页以内,就使用最基本的分页方式,大于一百页,则使用子查询的分页方式。
上一篇: 小米平板5核心参数曝光:支持120Hz高刷+手写笔
下一篇: 荣耀手环4怎么使用游泳功能?