溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

MySQL query_cache_type的DEMAND參數(shù)介紹和使用舉例

發(fā)布時間:2020-08-09 15:21:10 來源:ITPUB博客 閱讀:152 作者:chenfeng 欄目:MySQL數(shù)據(jù)庫

Query Cache存儲SELECT語句及其產(chǎn)生的數(shù)據(jù)結(jié)果,特別適用于表數(shù)據(jù)變化不是很頻繁的場景,例如一些靜態(tài)頁面,

或者頁面中的某塊不經(jīng)常發(fā)生 變化的信息。如果此表上有任何寫表操作發(fā)生,那么和這個表相關(guān)的所有緩存都將失效。

由于Query Cache需要緩存最新數(shù)據(jù)結(jié)果,因此表數(shù)據(jù) 發(fā)生任何變化(INSERT、UPDATE、DELETE或其他有可能產(chǎn)生

數(shù)據(jù)變化的操作),都會導(dǎo)致Query Cache被刷新。對于更新壓力大的數(shù)據(jù)庫來說,查詢緩存的命中率也會非常低。

但我們可以將參數(shù) query_cache_type 設(shè)置成 DEMAND(按需及用)方式,這樣對于默認的SQL語句不使用查詢緩存,

而對于確定要使用query cache的SQL語句, 可以用sql_cache的方法指定,例如:

select sql_cache * from table_name; 

或 select sql_cache count(*) from table_name;



以下是query_cache_type三個參數(shù)的含義:


query_cache_type=0(OFF)關(guān)閉


query_cache_type=1(ON)緩存所有結(jié)果,除非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參數(shù):

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)


相關(guān)參數(shù)解釋如下:


Qcache_free_blocks:表示查詢緩存中目前還有多少剩余的blocks,如果該值顯示較大,說明查詢緩存中的內(nèi)存碎片過多。


Qcache_free_memory:表示Query Cache中目前剩余的內(nèi)存大小。


Qcache_hits:表示有多少次命中緩存。


Qcache_inserts: 表示多少次未命中緩存然后插入,意思是新來的SQL請求如果在緩存中未找到,不得不執(zhí)行查詢處理,執(zhí)行查詢處理后把結(jié)果insert到查詢緩存中。


Qcache_lowmem_prunes:該參數(shù)記錄有多少條查詢因為內(nèi)存不足而被移出查詢緩存。


Qcache_not_cached: 表示因為query_cache_type的設(shè)置而沒有被緩存的查詢數(shù)量。


Qcache_queries_in_cache:當前緩存中緩存的查詢數(shù)量。


Qcache_total_blocks:當前緩存的block數(shù)量。


執(zhí)行一次查詢:

>select count(*) from test;

+----------+

| count(*) |

+----------+

|    36675 |

+----------+

1 row in set (0.41 sec)


然后執(zhí)行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.



再次執(zhí)行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執(zhí)行一下語句,看看有什么變化:

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的值變?yōu)榱?,再次執(zhí)行:


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的值變?yōu)榱?,每次執(zhí)行都累加1,說明使用了query cache。


備注:從MySQL 8.0版本以后直接取消了查詢緩存的整塊功能。


向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI