The database enables slow query logs Modify the configuration file Add the following two sentences to the configuration file my.ini log-slow-queries = C:\xampp\mysql_slow_query.log long_query_time=3 The first sentence is used to define the path of the slow query log (if it is a Linux system, it will involve permission issues) The second sentence is used to define queries that take more than a certain number of seconds as slow queries, in seconds. Check whether the configuration is successful: //View the slow query time, unit: s show variables like "long_query_time"; //View the slow query configuration show status like "%slow_queries%"; //View the slow query log path show variables like "%slow%"; Execute a slow query operation to verify whether the log is recorded: The amount of data in the environment you build is small, so it is difficult to simulate the execution of slow queries. You can use the following statement to simulate instead: SELECT SLEEP(10), name from user where userid=1; View the number of slow queries: show global status like '%slow%'; Thank you for reading, I hope it can help you, thank you for your support of this site! You may also be interested in:
|
<<: How to use rem adaptation in Vue
Table of contents 1. What is nginx? 2. What can n...
Preface Many web applications store data in a rel...
WIN10 64-bit install the latest MySQL8.0.18 downl...
NProgress is the progress bar that appears at the...
1. Parent components can pass data to child compo...
1. Basic use <!DOCTYPE html> <html lang=...
Preface All hardware devices in the Linux system ...
The development history of CSS will not be introd...
First, create a tomcat folder. To facilitate the ...
IP masquerading and port forwarding Firewalld sup...
1. The effect diagram implemented in this article...
Preface Recently, a data was operated incorrectly...
The skills that front-end developers need to mast...
Let’s take a look at what kind of charging animat...
Table of contents One master and multiple slaves ...