Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
最近我们的 mysql 服务器遇到了很多问题,我一直在使用分析器 (JetProfiler) 和压力测试器 (loadUI) 运行一些测试。我注意到,在同时使用 LoudUI 运行至少 20 个连接后,它已经无法连接或连接到网页的速度非常慢。Jetprofiler 说我们运行的几乎每个查询都很糟糕,因为它们都使用全表扫描,我想知道这是否真的是问题所在。
这是可能运行最多的查询的屏幕截图:
我将如何改善这一点?
只需为以下列创建单个索引:datum、webid 和 actief:
create index idx_datum on nieuws(datum); create index idx_webid on nieuws(webid); create index idx_actief on nieuws(actief);
这应该会产生更好的查询性能。