MySQL慢查询优化
2019-08-20 本文已影响0人
q若水
-- 列出MySQL服务器运行各种状态值:
show global status;
-- 查询MySQL服务器配置信息:
show variables;
-- 慢查询
show variables like '%slow%';
show global status like '%slow%';
-- 慢查询总数量
show global status like '%Slow_queries%';
-- 列出MySQL服务器运行各种状态值:
show global status;
-- 查询MySQL服务器配置信息:
show variables;
-- 慢查询
show variables like '%slow%';
show global status like '%slow%';
-- 慢查询总数量
show global status like '%Slow_queries%';