MySQL is a relational database management system developed by Swedish company MySQL AB and is a product of Oracle. MySQL is one of the most popular relational database management systems. In terms of WEB applications, MySQL is one of the best RDBMS (Relational Database Management System) application software. When we turn on the MySQL query cache, when we execute exactly the same SQL statement, the server will read the result directly from the cache. When data is modified, the previous cache will become invalid, so tables that are modified frequently are not suitable for query caching. 1. Implementation process of query cache2. Configure query cache1. Check whether the current MySQL database supports query caching SHOW VARIABLES LIKE 'have_query_cache'; 2. Check whether the query cache is currently enabled in MySQL SHOW VARIABLES LIKE 'query_cache_type'; 3. Check the size of the query cache SHOW VARIABLES LIKE 'query_cache_size'; 4. View the status variables of the query cache SHOW STATUS LIKE 'Qcache%'; |
parameter | meaning |
---|---|
Qcache_free_blocks | The number of free memory blocks in the query cache |
Qcache_free_memory | Amount of memory available for query cache |
Qcache_hits | Query cache hit count |
Qcache_inserts | The number of queries added to the query cache |
Qcache_lowmen_prunes | The number of queries that were removed from the query cache due to low memory |
Qcache_not_cached | The number of non-cached queries (queries that could not be cached or were not cached due to the query_cache_type setting) |
Qcache_queries_in_cache | The number of queries registered in the query cache |
Qcache_total_blocks | The total number of blocks in the query cache |
MySQL query cache is disabled by default. You need to manually configure the parameter query_cache_type to enable query cache. query_cache_type
There are three possible values for this parameter:
value | meaning |
---|---|
OFF or 0 | Query cache disabled |
ON or 1 | The query cache function is turned on. The SELECT result will be cached if it meets the cache conditions. Otherwise, it will not be cached. If SQL_NO_CACHE is explicitly specified, it will not be cached. |
DEMAND or 2 | The query cache function is performed on demand. Only SELECT statements that explicitly specify SQL_CACHE are cached; others are not cached. |
1. Configure in usr/my.cnf (the configuration file may also be in /etc/my.cnf)
2. Restart the service
service mysql restart
3. Testing
There are two options related to query caching that can be specified in the SELECT statement:
SELECT SQL_CACUE id,name FROM customer; SELECT SQL_NO_CACHE id,name FROM customer;
1. Inconsistent SQL statements
To hit the cache, the query SQL statement must be consistent
SQL1: select count(*) from tb_item; SQL2: select count(*) from tb_Item;
2. The query statement has some uncertain values
SQL1: select * from tb_item where updatetime < now() limit 1; SQL2:select user(); SQL3:select database();
3. Do not use any table query statements
select 'A';
4. Query tables in mysql, information_schema or performance_schema databases
select * from information_schema.engines;
5. Queries executed within stored functions, triggers, or event bodies
As title
6. Table changes lead to cache deletion
If a table changes, all cached queries using that table become invalid and are removed from the cache. This includes queries that use MERGE to tables that are mapped to the changed table. A table can be altered by many types of statements, such as INSERT, UPDATE, DELETE, TRUNCATE TABLE, ALTER TABLE, DROP TABLE, or DROP DATABASE.
The above is a summary of the simple use of MySQL query cache
This is the end of this article about the simple use of MySQL query cache. For more information about the use of MySQL query cache, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!
<<: How to use JavaScript and CSS correctly in XHTML documents
>>: Pure js to achieve typewriter effect
Recently, when using Apple.com/Ebay.com/Amazon.co...
What is Redis Cluster Redis cluster is a distribu...
Note: nginx installed via brew Website root direc...
Table of contents Introduction Install Display Fi...
Table of contents 1 Install Docker 2 Configuring ...
Here are 30 best practices for HTML beginners. 1....
1. Pull the image First, execute the following co...
Table of contents 1. Introduction 2. Solution Imp...
1. Find mysqldump.exe in the MySQL installation p...
This article example shares the implementation of...
1. Problem symptoms Version: MySQL 5.6, using the...
Alphabetical DTD: Indicates in which XHTML 1.0 DT...
When I switched my primary operating system from ...
This article shares the use of js and jQuery tech...
This article example shares the specific code for...