我们正在尝试弄清楚如何优化查询(大约100毫秒),并运行我们看到的Creating Sort Index
使用75%
总时间的配置文件。首先,创建排序索引的确切效果是什么?是磁盘/ IO吗?
其次,我们可以对查询本身进行任何优化吗?
SELECT r.`id`,
r.name,
r.public_uri,
rv.version,
rv.interpreter,
rv.notes,
rv.content,
r.added,
r.added_by,
r.modified,
r.modified_by,
r.public,
r.public_by
FROM recipe_heads rh,
recipes r,
recipe_versions rv
WHERE rh.recipe = r.`id`
AND rh.recipe_version = rv.`id`
AND r.`id` = rv.recipe
ORDER BY r.added DESC
added
确实具有标准索引。