关于Mysql的FileSort对查询性能的影响
in developsqlCo-De with 0 comment

关于Mysql的FileSort对查询性能的影响

in developsqlCo-De with 0 comment

场景

环境

Mysql
InnoDB

主键:id
唯一索引:user_id,order_no
查询索引:update_time

查询最新的一条

select * from t_table where user_id = '177' order by update_time desc limit 1 

Explain

image.png

关于索引

根据Explain,可以看到数据查询走了唯一索引

关于排序

关于filesort的出现

关于filesort的性能影响

优化方案

实际操作

思路

Comments are closed.