您好,登錄后才能下訂單哦!
Query Cache存儲SELECT語句及其產生的數據結果,特別適用于表數據變化不是很頻繁的場景,例如一些靜態頁面,
或者頁面中的某塊不經常發生 變化的信息。如果此表上有任何寫表操作發生,那么和這個表相關的所有緩存都將失效。
由于Query Cache需要緩存最新數據結果,因此表數據 發生任何變化(INSERT、UPDATE、DELETE或其他有可能產生
數據變化的操作),都會導致Query Cache被刷新。對于更新壓力大的數據庫來說,查詢緩存的命中率也會非常低。
但我們可以將參數 query_cache_type 設置成 DEMAND(按需及用)方式,這樣對于默認的SQL語句不使用查詢緩存,
而對于確定要使用query cache的SQL語句, 可以用sql_cache的方法指定,例如:
select sql_cache * from table_name;
或 select sql_cache count(*) from table_name;
以下是query_cache_type三個參數的含義:
query_cache_type=0(OFF)關閉
query_cache_type=1(ON)緩存所有結果,除非select語句使用SQL_NO_CACHE禁用查詢緩存
query_cache_type=2(DEMAND),只緩存select語句中通過SQL_CACHE指定需要緩存的查詢
修改為DEMAND方式:
vi /etc/my.cnf,加入如下行:
query_cache_type =2
保存并重啟mysql
mysql5.7版本如果直接修改可能會報錯:
mysql>set global query_cache_type=2;
ERROR 1651 (HY000): Query cache is disabled; restart the server with query_cache_type=1 to enable it
查看是否開啟DEMAND參數:
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 | 1048576 |
| query_cache_type | DEMAND |
| query_cache_wlock_invalidate | OFF |
+------------------------------+---------+
6 rows in set (0.44 sec)
mysql>>show global status like '%Qcache%';
+-------------------------+---------+
| Variable_name | Value |
+-------------------------+---------+
| Qcache_free_blocks | 1 |
| Qcache_free_memory | 1031832 |
| Qcache_hits | 0 |
| Qcache_inserts | 0 |
| Qcache_lowmem_prunes | 0 |
| Qcache_not_cached | 3 |
| Qcache_queries_in_cache | 0 |
| Qcache_total_blocks | 1 |
+-------------------------+---------+
8 rows in set (0.14 sec)
相關參數解釋如下:
Qcache_free_blocks:表示查詢緩存中目前還有多少剩余的blocks,如果該值顯示較大,說明查詢緩存中的內存碎片過多。
Qcache_free_memory:表示Query Cache中目前剩余的內存大小。
Qcache_hits:表示有多少次命中緩存。
Qcache_inserts: 表示多少次未命中緩存然后插入,意思是新來的SQL請求如果在緩存中未找到,不得不執行查詢處理,執行查詢處理后把結果insert到查詢緩存中。
Qcache_lowmem_prunes:該參數記錄有多少條查詢因為內存不足而被移出查詢緩存。
Qcache_not_cached: 表示因為query_cache_type的設置而沒有被緩存的查詢數量。
Qcache_queries_in_cache:當前緩存中緩存的查詢數量。
Qcache_total_blocks:當前緩存的block數量。
執行一次查詢:
>select count(*) from test;
+----------+
| count(*) |
+----------+
| 36675 |
+----------+
1 row in set (0.41 sec)
然后執行show status like '%Qcache%',看看有什么變化:
mysql>show global status like '%Qcache%';
+-------------------------+---------+
| Variable_name | Value |
+-------------------------+---------+
| Qcache_free_blocks | 1 |
| Qcache_free_memory | 1031832 |
| Qcache_hits | 0 |
| Qcache_inserts | 0 |
| Qcache_lowmem_prunes | 0 |
| Qcache_not_cached | 4 |
| Qcache_queries_in_cache | 0 |
| Qcache_total_blocks | 1 |
+-------------------------+---------+
8 rows in set (0.01 sec)
Qcache_hits為0.
再次執行select count(*) from test;
mysql>select count(*) from test;
+----------+
| count(*) |
+----------+
| 36675 |
+----------+
1 row in set (0.02 sec)
mysql>show global status like '%Qcache%';
+-------------------------+---------+
| Variable_name | Value |
+-------------------------+---------+
| Qcache_free_blocks | 1 |
| Qcache_free_memory | 1031832 |
| Qcache_hits | 0 |
| Qcache_inserts | 0 |
| Qcache_lowmem_prunes | 0 |
| Qcache_not_cached | 5 |
| Qcache_queries_in_cache | 0 |
| Qcache_total_blocks | 1 |
+-------------------------+---------+
8 rows in set (0.00 sec)
Qcache_hits依舊為0,說明沒有使用Query Cache.
加sql_cache執行一下語句,看看有什么變化:
mysql>select sql_cache count(*) from test;
+----------+
| count(*) |
+----------+
| 36675 |
+----------+
1 row in set, 1 warning (0.00 sec)
mysql>show global status like '%Qcache%';
+-------------------------+---------+
| Variable_name | Value |
+-------------------------+---------+
| Qcache_free_blocks | 1 |
| Qcache_free_memory | 1030296 |
| Qcache_hits | 1 |
| Qcache_inserts | 1 |
| Qcache_lowmem_prunes | 0 |
| Qcache_not_cached | 5 |
| Qcache_queries_in_cache | 1 |
| Qcache_total_blocks | 4 |
+-------------------------+---------+
8 rows in set (0.00 sec)
可以看到Qcache_hits的值變為了1,再次執行:
mysql>select sql_cache count(*) from test;
+----------+
| count(*) |
+----------+
| 36675 |
+----------+
1 row in set, 1 warning (0.00 sec)
mysql>show global status like '%Qcache%';
+-------------------------+---------+
| Variable_name | Value |
+-------------------------+---------+
| Qcache_free_blocks | 1 |
| Qcache_free_memory | 1030296 |
| Qcache_hits | 2 |
| Qcache_inserts | 1 |
| Qcache_lowmem_prunes | 0 |
| Qcache_not_cached | 5 |
| Qcache_queries_in_cache | 1 |
| Qcache_total_blocks | 4 |
+-------------------------+---------+
8 rows in set (0.01 sec)
可以看到Qcache_hits的值變為了2,每次執行都累加1,說明使用了query cache。
備注:從MySQL 8.0版本以后直接取消了查詢緩存的整塊功能。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。