mysql開啓緩存、設置緩存大小、緩存過時機制 mysql系列3、mysql開啓緩存、設置緩存大小、緩存過時機制

 

1、開啓緩存

mysql 開啓查詢緩存能夠有兩種方法來開啓一種是使用set命令來進行開啓,另外一種是直接修改my.ini文件來直接設置都是很是的簡單的哦。

開啓緩存,設置緩存大小,具體實施以下:html

一、修改配置文件my.ini

windows下是my.ini,linux下是my.cnf;java

在配置文件的最後追加上:mysql

query_cache_type = 1
query_cache_size = 600000

須要重啓mysql生效;linux

二、命令方式

那麼採用第二種方式;sql

b) 開啓緩存,兩種方式:windows

a)使用mysql命令:緩存

set global query_cache_type = 1;  
set global query_cache_size = 600000;

若是報錯:服務器

query cache is disabled; restart the server with query_cache_type=1...session

在mysql命令行輸入

show variables like "%query_cache%" 查看是否設置成功,如今可使用緩存了;
固然若是你的數據表有更新怎麼辦,不要緊mysql默認會和這個表有關係的緩存刪掉,下次查詢的時候會直接讀表而後再緩存

下面是一個簡單的例子:

複製代碼
[MySQL@csdba1850 ~]$ MySQL -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or /g.
Your MySQL connection id is 3
Server version: 5.0.45-community MySQL Community Edition (GPL)
Type 'help;' or '/h' for help. Type '/c' to clear the buffer.
MySQL> set global query_cache_size = 600000;
設置緩存內存
Query OK, 0 rows affected (0.00 sec)
MySQL> set session query_cache_type = ON;
開啓查詢緩存
Query OK, 0 rows affected (0.00 sec)
MySQL> use test Reading table information for completion 
of table and column names You can turn off this feature to 
get a quicker startup with -A Database changed mysql> show tables; 
+----------------+ | Tables_in_test | +----------------+ | animals | 
| person | +----------------+ 5 rows in set (0.00 sec) 
mysql> select count(*) from animals; +----------+ | count(*) 
| +----------+ | 6 | +----------+ 1 row in set (0.00 sec)
Qcache_hits表示mysql緩存查詢在緩存中命中的累計次數,是累加值。

mysql> SHOW STATUS LIKE 'Qcache_hits'; +---------------+-------+ 
| Variable_name | Value | +---------------+-------+ | Qcache_hits 
| 0 | --0次 +---------------+-------+ 8 rows in set (0.00 sec) 
mysql> select count(*) from animals; +----------+ | count(*) 
| +----------+ | 6 | +----------+ 1 row in set (0.00 sec) 
mysql> SHOW STATUS LIKE 'Qcache%'; +---------------+-------+ 
| Variable_name | Value | +---------------+-------+ | Qcache_hits | 1 | 
表示sql在緩存中直接獲得結果,不須要再去解析
+---------------+-------+ 8 rows in set (0.00 sec) 
mysql> select count(*) from animals; +----------+ 
| count(*) | +----------+ | 6 | +----------+ 1 row in set (0.00 sec) 
mysql> select count(*) from animals; +----------+ | count(*) 
| +----------+ | 6 | +----------+ 1 row in set (0.00 sec) 
mysql> SHOW STATUS LIKE 'Qcache_hits'; +---------------+-------+ 
| Variable_name | Value | +---------------+-------+ | Qcache_hits | 3 | 
上面的sql也是是從緩存中直接取到結果
+---------------+-------+ 1 row in set (0.00 sec) mysql> insert into animals select 9,'testsds' ; 
插入數據後,跟這個表全部相關的sql緩存就會被清空掉
Query OK, 1 row affected (0.00 sec) Records: 
1 Duplicates: 0 Warnings: 0 mysql> select count(*) from animals; 
+----------+ | count(*) | +----------+ | 7 | +----------+ 
1 row in set (0.00 sec) mysql> SHOW STATUS LIKE 'Qcache_hits'; 
+---------------+-------+ | Variable_name | Value | 
+---------------+-------+ | Qcache_hits | 3 | 
仍是等於3,說明上一條sql是沒有直接從緩存中直接獲得的
+---------------+-------+ 1 row in set (0.00 sec) 
mysql> select count(*) from animals; +----------+ 
| count(*) | +----------+ | 7 | +----------+ 
1 row in set (0.00 sec) mysql> SHOW STATUS LIKE 'Qcache_hits'; 
+---------------+-------+ | Variable_name | Value | +---------------+-------+ 
| Qcache_hits | 4 | +---------------+-------+ 1 row in set (0.00 sec) 
複製代碼

以上的相關內容就是對mysql緩存查詢和設置的介紹,望你能有所收穫。

2、查看是否生效

一、query_cache_type 使用查詢緩存的方式

通常,咱們會把 query_cache_type 設置爲 ON,默認狀況下應該是ON

複製代碼
mysql> select @@query_cache_type;
+--------------------+
| @@query_cache_type |
+--------------------+
| ON |
+--------------------+
複製代碼

query_cache_type有3個值 0表明關閉查詢緩存OFF,1表明開啓ON,2(DEMAND)表明當sql語句中有SQL_CACHE關鍵詞時才緩存,如:

select SQL_CACHE user_name from users where user_id = '100';

這樣 當咱們執行 select id,name from tableName; 這樣就會用到查詢緩存。

①在 query_cache_type 打開的狀況下,若是你不想使用緩存,須要指明
select sql_no_cache id,name from tableName;
②當sql中用到mysql函數,也不會緩存
 
固然也能夠禁用查詢緩存: mysql> set session query_cache_type=off;

二、have_query_cache 設置查詢緩存是否可用

mysql> show variables like 'have_query_cache';
+------------------+-------+
| Variable_name | Value |
+------------------+-------+
| have_query_cache | YES |

上面的顯示,表示設置查詢緩存是可用的。

三、query_cache_size查看緩存大小

表示查詢緩存大小,也就是分配內存大小給查詢緩存,若是你分配大小爲0,
那麼 第一步 和 第二步 起不到做用,仍是沒有任何效果。

複製代碼
mysql> select @@global.query_cache_size;
+---------------------------+
| @@global.query_cache_size |
+---------------------------+
| 16777216 |
+---------------------------+
複製代碼

上面是 mysql6.0設置默認的,以前的版本好像默認是0的,那麼就要本身設置下。

設置

set @@global.query_cache_size=1000000; 

這裏是設置1M左右,900多K。

再次查看下:

複製代碼
select @@global.query_cache_size;
+---------------------------+
| @@global.query_cache_size |
+---------------------------+
| 999424 |
+---------------------------+
複製代碼

顯示咱們設置新的大小,表示設置成功。

四、query_cache_limit 控制緩存查詢結果的最大值

例如: 若是查詢結果很大, 也緩存????這個明顯是不可能的。
MySql 能夠設置一個最大的緩存值,當你查詢緩存數結果數據超過這個值就不會
進行緩存。缺省爲1M,也就是超過了1M查詢結果就不會緩存。

複製代碼
mysql> select @@global.query_cache_limit;
+----------------------------+
| @@global.query_cache_limit |
+----------------------------+
| 1048576 |
+----------------------------+
複製代碼

這個是默認的數值,若是須要修改,就像設置緩存大小同樣設置,使用set

從新指定大小。
好了,經過4個步驟就能夠 打開了查詢緩存,具體值的大小和查詢的方式 這個因不一樣
的狀況來指定了。
mysql查詢緩存相關變量

複製代碼
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             | 16777216 |
| query_cache_type             | ON       |
| query_cache_wlock_invalidate | OFF      |
+------------------------------+----------+
6 rows in set (0.00 sec)
複製代碼

五、查看緩存的狀態

複製代碼
mysql> show status like '%Qcache%';
+-------------------------+----------+
| Variable_name           | Value    |
+-------------------------+----------+
| Qcache_free_blocks      | 11       |
| Qcache_free_memory      | 16610552 |
| Qcache_hits             | 10       |
| Qcache_inserts          | 155      |
| Qcache_lowmem_prunes    | 0        |
| Qcache_not_cached       | 21       |
| Qcache_queries_in_cache | 111      |
| Qcache_total_blocks     | 256      |
+-------------------------+----------+
8 rows in set (0.00 sec)
複製代碼

MySQL 提供了一系列的 Global Status 來記錄 Query Cache 的當前狀態,具體以下:

Qcache_free_blocks:目前還處於空閒狀態的 Query Cache 中內存 Block 數目
Qcache_free_memory:目前還處於空閒狀態的 Query Cache 內存總量
Qcache_hits:Query Cache 命中次數
Qcache_inserts:向 Query Cache 中插入新的 Query Cache 的次數,也就是沒有命中的次數
Qcache_lowmem_prunes:當 Query Cache 內存容量不夠,須要從中刪除老的 Query Cache 以給新的 Cache 對象使用的次數
Qcache_not_cached:沒有被 Cache 的 SQL 數,包括沒法被 Cache 的 SQL 以及因爲 query_cache_type 設置的不會被 Cache 的 SQL
Qcache_queries_in_cache:目前在 Query Cache 中的 SQL 數量
Qcache_total_blocks:Query Cache 中總的 Block 數量  

六、檢查查詢緩存使用狀況

檢查是否從查詢緩存中受益的最簡單的辦法就是檢查緩存命中率
當服務器收到SELECT 語句的時候,Qcache_hits 和Com_select 這兩個變量會根據查詢緩存
的狀況進行遞增
查詢緩存命中率的計算公式是:Qcache_hits/(Qcache_hits + Com_select)。

複製代碼
mysql> show status like '%Com_select%';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| Com_select    | 1     |
+---------------+-------+
複製代碼

query_cache_min_res_unit的配置是一柄」雙刃劍」,默認是4KB,設置值大對大數據查詢有好處,但若是你的查詢都是小數據 查詢,就容易形成內存碎片和浪費。

查詢緩存碎片率 = Qcache_free_blocks / Qcache_total_blocks * 100%

若是查詢緩存碎片率超過20%,能夠用FLUSH QUERY CACHE整理緩存碎片,或者試試減少query_cache_min_res_unit,若是你的查詢都是小數據量的話。

查詢緩存利用率 = (query_cache_size - Qcache_free_memory) / query_cache_size * 100%

查詢緩存利用率在25%如下的話說明query_cache_size設置的過大,可適當減少;查詢緩存利用率在80%以上並且 Qcache_lowmem_prunes > 50的話說明query_cache_size可能有點小,要不就是碎片太多。

查詢緩存命中率 = (Qcache_hits - Qcache_inserts) / Qcache_hits * 100%

示例服務器 查詢緩存碎片率 = 20.46%,查詢緩存利用率 = 62.26%,查詢緩存命中率 = 1.94%,命中率不好,可能寫操做比較頻繁吧,並且可能有些碎片。

3、緩存使用策略和過時機制

一、緩存條件 

    查詢緩存能夠看作是SQL文本和查詢結果的映射。若是第二次查詢的SQL和第一次查詢的SQL徹底相同(注意必須是徹底相同,即便多一個空格或者大小寫不一樣都認爲不一樣)且開啓了查詢緩存,那麼第二次查詢就直接從查詢緩存中取結果,能夠經過下面的SQL來查看緩存命中次數(是個累加值):
 SHOW STATUS LIKE 'Qcache_hits';

    另外即便徹底相同的SQL,若是使用不一樣的字符集、不一樣的協議等也會被認爲是不一樣的查詢而分別進行緩存。

 二、緩存數據失效時機

    在表的結構或數據發生改變時,查詢緩存中的數據再也不有效。有這些INSERT、UPDATE、 DELETE、TRUNCATE、ALTER TABLE、DROP TABLE或DROP DATABASE會致使緩存數據失效。因此查詢緩存適合有大量相同查詢的應用,不適合有大量數據更新的應用。

 三、緩存清理

可使用下面三個SQL來清理查詢緩存:
一、FLUSH QUERY CACHE; // 清理查詢緩存內存碎片。
二、RESET QUERY CACHE; // 從查詢緩存中移出全部查詢。
三、FLUSH TABLES; //關閉全部打開的表,同時該操做將會清空查詢緩存中的內容。
 

原文來自: mysql系列3、mysql開啓緩存、設置緩存大小、緩存過時機制

相關文章
相關標籤/搜索