Home > Database > Mysql Tutorial > body text

MySQL慢查询_MySQL

WBOY
Release: 2016-06-01 13:16:25
Original
1085 people have browsed it

看到这个名称我惊呆了...

SQL不是希望快速查询取得结果吗,怎么什么时候会有这个概念。

问了一个哥们,哥们认为是漫查询:同时多查询。

于是Google得出了如下结果:

慢查询其实对应的是MySQL慢查询日志系统,用来记录执行比较慢的SQL。

怎么去判断执行慢呢,MySQL中你show variables like '%quer%';时,你可以看到long_query_time 属性,对应的就是设置的比较时间。

当看到long_query_time 属性时,你同时可以看到log_slow_queries状态为OFF这说明慢查询并不是开启的。

那如何开启呢?

1、Linux下

找到mysql的配置文件my.ini, 在mysqld下方加入慢查询的配置语句

log_slow_queries = /var/lib/mysql/mysql-slow.log

long_query_time = 10

2、Windows下

找到mysql的配置文件my.ini, 在mysqld下方加入慢查询的配置语句

log_slow_queries = C:/mysql/mysql-slow.log

long_query_time = 10

其中10为秒,配置完成需要重启。
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template