Share MySQL cache query and clear command example code
This article mainly introduces the detailed explanation of the query and clear commands of MySQL cache. For some tables that do not change data frequently and have a large number of the same SQL queries, the query cache will be more useful. Friends in need can refer to it
Mysql Query Cache
The role of the query cache is that when the query receives a query that is the same as before, the server will retrieve the results from the query cache instead of analyzing and executing the last query again. query. This greatly improves performance and saves time.
1. Configure query cache
Modify the configuration file, modify query_cache_size and query_cache_type under [mysqld] (if not, add it). Among them, query_cache_size represents the size of the cache, and query_cache_type has 3 values, indicating the type of select result set to be cached. The values of query_cache_type are as follows:
0 or off closes the cache
1 or on turns on the cache, but does not save it for use The select statement of sql_no_cache, if you do not cache select sql_no_cache name from wei where id=2
2 or demand to enable conditional caching, only cache the select statement with sql_cache, cache select sql_cache name from wei where id=4
Example The configuration is as follows. After the configuration is completed, restart the Mysql server.
##
query_cache_size=10M query_cache_type=1
mysql> show variables like '%query_cache%'; +------------------------------+----------+ | Variable_name | Value | +------------------------------+----------+ | have_query_cache | YES | | query_cache_limit | 1048576 | | query_cache_min_res_unit | 4096 | | query_cache_size | 10485760 | | query_cache_type | ON | | query_cache_wlock_invalidate | OFF | +------------------------------+----------+ 6 rows in set (0.00 sec)
We execute it once first, select count(*) from wei; and then execute it again. It can be seen that the second use The time is much lower than the first execution, because the select result is read from the cache the second time.
mysql> select count(*) from wei ; +----------+ | count(*) | +----------+ | 4194304 | +----------+ 1 row in set (3.92 sec) mysql> select count(*) from wei ; +----------+ | count(*) | +----------+ | 4194304 | +----------+ 1 row in set (0.00 sec)
mysql> show status like 'qcache%'; +-------------------------+----------+ | Variable_name | Value | +-------------------------+----------+ | Qcache_free_blocks | 1 | | Qcache_free_memory | 10475424 | | Qcache_hits | 1 | | Qcache_inserts | 1 | | Qcache_lowmem_prunes | 0 | | Qcache_not_cached | 0 | | Qcache_queries_in_cache | 1 | | Qcache_total_blocks | 4 | +-------------------------+----------+ 8 rows in set (0.00 sec)
- Qcache_free_blocks: The number of adjacent memory blocks in the cache. A large number indicates there may be fragments. FLUSH QUERY CACHE will defragment the cache to obtain a free block.
- Qcache_free_memory: Free memory in the cache.
- Qcache_hits: Increased each time a query hits in the cache
- Qcache_inserts: Increased each time a query is inserted. The number of hits divided by the number of insertions is the miss ratio.
- Qcache_lowmem_prunes: The number of times the cache ran out of memory and had to be purged to make room for more queries. This number is best viewed over a long period of time; if this number is growing, it may indicate severe fragmentation or low memory. (The free_blocks and free_memory above can tell you which situation it is)
- Qcache_not_cached: The number of queries that are not suitable for caching, usually because these queries are not SELECT statements or use now( ) and other functions.
- Qcache_queries_in_cache: The number of currently cached queries (and responses).
- Qcache_total_blocks: Number of blocks in the cache.
Clear cache
mysql's FLUSH syntax (clear cache)
FLUSH flush_option [,flush_option]
flush_option can be any of the following:
- HOSTS This is the most used and often encountered. Mainly used to clear the host cache table. If some of your hosts change IP numbers, or if you get the error message Host... isblocked, you should clear the host table. When more than max_connect_errors errors occur continuously for a given host when connecting to the MySQL server, MySQL will block further connection requests from that host for security reasons. Clearing the host table allows the host to try connecting again.
- LOGS Close the current binary log file and create a new file. The name of the new binary log file is added to the number of the current binary file by 1.
- PRIVILEGES This is also often used. Whenever re-authorization is performed, in order to make the new permissions take effect immediately just in case, it is usually executed. The purpose is to obtain the authorization table from the database. Reload the permissions into the cache.
- TABLES Close all open tables, and this operation will clear the contents of the query cache.
FLUSH TABLES WITH READ LOCK Closes all open tables and adds a read lock to all tables in the database until unlock tables is explicitly executed. This operation is often used for data backup.
STATUS Reset most status variables to 0.
- ##MASTER Delete all binary log files in the binary log index file, reset the index file of the binary log file to empty, and create a new binary log file. However, this is no longer recommended. Use, changed to reset master. As you can imagine, I was very naive in the past. What could have been done with one simple command actually required several commands. The previous method was to first find out the name of the current binary log file and then use the purge operation.
- QUERY CACHE Reorganizes the query cache, eliminates fragments, and improves performance, but does not affect the existing data in the query cache. This is the same as Flush table and Reset Query Cache (will Will clear the contents of the query cache) are different.
- SLAVE It is similar to resetting replication. It makes the slave database forget the replication location of the master database, and also deletes the downloaded relay log. Like the Master, it is no longer recommended. Changed to Reset Slave. This is also very useful.
The above is the detailed content of Share MySQL cache query and clear command example code. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.

MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.

How to insert data into MySQL table? Connect to the database: Use mysqli to establish a connection to the database. Prepare the SQL query: Write an INSERT statement to specify the columns and values to be inserted. Execute query: Use the query() method to execute the insertion query. If successful, a confirmation message will be output.

Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.

To use MySQL stored procedures in PHP: Use PDO or the MySQLi extension to connect to a MySQL database. Prepare the statement to call the stored procedure. Execute the stored procedure. Process the result set (if the stored procedure returns results). Close the database connection.

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

In PHP development, the caching mechanism improves performance by temporarily storing frequently accessed data in memory or disk, thereby reducing the number of database accesses. Cache types mainly include memory, file and database cache. Caching can be implemented in PHP using built-in functions or third-party libraries, such as cache_get() and Memcache. Common practical applications include caching database query results to optimize query performance and caching page output to speed up rendering. The caching mechanism effectively improves website response speed, enhances user experience and reduces server load.

Oracle database and MySQL are both databases based on the relational model, but Oracle is superior in terms of compatibility, scalability, data types and security; while MySQL focuses on speed and flexibility and is more suitable for small to medium-sized data sets. . ① Oracle provides a wide range of data types, ② provides advanced security features, ③ is suitable for enterprise-level applications; ① MySQL supports NoSQL data types, ② has fewer security measures, and ③ is suitable for small to medium-sized applications.
