mysql中间层 -- Atlas(360)
sql优化,读写分离,主主复制,主从复制,分区表,垂直拆分,水平拆分
mysql单表10万以上数据,查询优化!
耗时:0.153s
select * from student
limit 100000, 20
耗时:0.062s
select * from student
where id>=(select id from student limit 100000, 1)
limit 20
mysql中间层 -- Atlas(360)
sql优化,读写分离,主主复制,主从复制,分区表,垂直拆分,水平拆分
mysql单表10万以上数据,查询优化!
耗时:0.153s
select * from student
limit 100000, 20
耗时:0.062s
select * from student
where id>=(select id from student limit 100000, 1)
limit 20