原文出自:https://blog.csdn.net/seesun2012
mysql
一、啓用MySQL查詢緩存好處:
能夠極大地減低數據庫服務器的CPU使用率,實際使用狀況是:開啓前CPU使用率120%左右,開啓後降到了10%。sql
二、查看查詢緩存狀況:
mysql> show variables like '%query_cache%';
(query_cache_type 爲 ON 表示已經開啓)
+------------------------------+----------+
| Variable_name | Value |
+------------------------------+----------+
| have_query_cache | YES |
| query_cache_limit | 1048576 |
| query_cache_min_res_unit | 4096 |
| query_cache_size | 20971520 |
| query_cache_type | ON |
| query_cache_wlock_invalidate | OFF |
+------------------------------+----------+數據庫
三、若是不是ON,修改配置文件以開啓查詢緩存:緩存
vi /etc/my.cnf
[mysqld]中添加:
query_cache_size = 20M
query_cache_type = ON服務器
四、重啓mysql服務:函數
service mysql restart.net
五、查看緩存使用狀況:
mysql> show status like 'qcache%';
+-------------------------+----------+
| Variable_name | Value |
+-------------------------+----------+
| Qcache_free_blocks | 83 |
| Qcache_free_memory | 19811040 |
| Qcache_hits | 3108196 |
| Qcache_inserts | 757254 |
| Qcache_lowmem_prunes | 20720 |
| Qcache_not_cached | 47219 |
| Qcache_queries_in_cache | 47 |
| Qcache_total_blocks | 276 |
+-------------------------+----------+rest
六、其中各個參數的意義以下:
Qcache_free_blocks:緩存中相鄰內存塊的個數。數目大說明可能有碎片。FLUSH QUERY CACHE會對緩存中的碎片進行整理,從而獲得一個空閒塊。
Qcache_free_memory:緩存中的空閒內存。
Qcache_hits:每次查詢在緩存中命中時就增大
Qcache_inserts:每次插入一個查詢時就增大。命中次數除以插入次數就是不中比率。
Qcache_lowmem_prunes:緩存出現內存不足而且必需要進行清理以便爲更多查詢提供空間的次數。這個數字最好長時間來看;若是這個 數字在不斷增加,就表示可能碎片很是嚴重,或者內存不多。(上面的 free_blocks和free_memory能夠告訴您屬於哪一種狀況)
Qcache_not_cached:不適合進行緩存的查詢的數量,一般是因爲這些查詢不是 SELECT 語句或者用了now()之類的函數。
Qcache_queries_in_cache:當前緩存的查詢(和響應)的數量。
Qcache_total_blocks:緩存中塊的數量。blog
七、對於某些不想使用緩存的語句,能夠這樣使用:
select SQL_NO_CACHE count() from t_user where tell = '153*******';內存