mysql 数据几十万 CPU过高
ringa_lee
ringa_lee 2017-04-17 16:28:08
0
4
497

一个数据表数据有几十万的样子 在查询页面反复的时候 CPU特别高基本爆满
SQl语句
select count(*) from emp where catid <> 3 and cid =2; 用户做分页数量
select * from emp limit 1,10; 本页显示的

ringa_lee
ringa_lee

ringa_lee

répondre à tous(4)
刘奇

你这个根本没有访问索引,直接读硬盘数据

Peter_Zhu

sql 语句 发一下。

伊谢尔伦

InnoDB是没有直接保存表的数据总数的,select count(*) from emp;要扫一遍索引,反复查当然要耗CPU。

我的测试表有两千万数据,没缓存时count(*)要15秒,有缓存后也要3秒。

show table status where Name = 'your table name'

可以拿到近似的行数。

黄舟

这个可以用延迟关联查询(索引覆盖查询)

Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!