我给你来自慢查询日志的样本。
mysql 版本:5.6.14,8gb 服务器 6gb 可用内存,innodb 表
例如:当我在 phpmyadmin 中键入此查询时,id 是主键非常快,但它仍在我的慢查询日志中
# Query_time: 3.226675 Lock_time: 0.000046 Rows_sent: 0 Rows_examined: 1
SET timestamp=1385980918;
update `rsslists` set `lastTimeRead` = '1385980913', `total` = '66502', `quality` = '0.028284863613124' where `id` = '146';
或此查询:
# Query_time: 2.284815 Lock_time: 0.000047 Rows_sent: 0 Rows_examined: 0
SET timestamp=1385980935;
select * from `articles` where `guid` = '1.2180130' limit 1;
解释:
'guid' 是索引非常简单的查询我不知道为什么他们有时要花这么长时间