主頁(yè) > 知識(shí)庫(kù) > MySql 緩存查詢?cè)砼c緩存監(jiān)控和索引監(jiān)控介紹

MySql 緩存查詢?cè)砼c緩存監(jiān)控和索引監(jiān)控介紹

熱門標(biāo)簽:百度競(jìng)價(jià)排名 地方門戶網(wǎng)站 呼叫中心市場(chǎng)需求 Linux服務(wù)器 鐵路電話系統(tǒng) 服務(wù)外包 網(wǎng)站排名優(yōu)化 AI電銷

查詢緩存

1.查詢緩存操作原理

mysql執(zhí)行查詢語(yǔ)句之前,把查詢語(yǔ)句同查詢緩存中的語(yǔ)句進(jìn)行比較,且是按字節(jié)比較,僅完全一致才被認(rèn)為相同。如下,這兩條語(yǔ)句被視為不同的查詢

SELECT * FROM tb1_name

Select * from tb1_name

1)不同數(shù)據(jù)庫(kù)、不同協(xié)議版本,或字符集不同的查詢被視為不同的查詢并單獨(dú)緩存。

2)以下兩種類型的查詢不被緩存

a.預(yù)處理語(yǔ)句

b.嵌套查詢的子查詢

3)從查詢緩存抓取查詢結(jié)果前,mysql檢查用戶對(duì)查詢涉及的所有數(shù)據(jù)庫(kù)和表是否有查詢權(quán)限,如果沒(méi)有則不使用緩存查詢結(jié)果。

4)如果從緩存查詢返回一個(gè)查詢結(jié)果,服務(wù)器遞增Qcache_hits狀態(tài)變量,而不是Com_select

5)如果表改變,所有使用了該表的緩存查詢變成不合法,從緩存移除。表可能被多種類型的語(yǔ)句改變,比如INSERT, UPDATE, DELETE, TRUNCATE TABLE, ALTER TABLE, DROP TABLE, 或DROP DATABASE.

參考連接:

http://dev.mysql.com/doc/refman/4.1/en/query-cache-operation.html

2.查看是否開(kāi)啟了緩存查詢

SHOW VARIABLES LIKE 'have_query_cache';

MySql wbr>緩存查詢?cè)砼c緩存監(jiān)控 wbr>和 wbr>索引監(jiān)控

3.從查詢緩存中移除所有查詢緩存

RESET QUERY CACHE;

4.查詢緩存性能監(jiān)控

SHOW STATUS LIKE 'Qcache%'

MySql wbr>緩存查詢?cè)砼c緩存監(jiān)控 wbr>和 wbr>索引監(jiān)控

輸出說(shuō)明:

Qcache_free_blocks:查詢緩存中的空閑內(nèi)存塊

Qcache_free_memory:查詢緩存的空閑內(nèi)存數(shù)量

Qcache_hits:查詢緩存命中數(shù)量

Qcache_inserts:添加到查詢緩存的查詢的數(shù)量(不是表示沒(méi)被緩存而進(jìn)行的讀,而是緩存失效而進(jìn)行的讀)

Qcache_lowmen_prunes:因內(nèi)存太低,從緩存查詢中刪除的查詢的數(shù)量

Qcache_not_chached:未緩存查詢的數(shù)量(未被緩存、因?yàn)閝uerey_cache_type設(shè)置沒(méi)被緩存)

Qcache_queries_in_cache:緩存查詢中注冊(cè)的查詢的數(shù)量

Qcache_total_blocks:查詢緩存中的內(nèi)存塊總數(shù)

SELECT查詢總數(shù):

Com_select+Qcache_hits+ 解析錯(cuò)誤的查詢數(shù)(queries with errors found by parser)

其中,Com_select表示未命中緩存數(shù),Qcache_hits表示緩存命中數(shù)

Com_select計(jì)算公式:

Qcache_inserts+Qcache_not_cached+權(quán)限檢查錯(cuò)誤數(shù)(queries with errors found during the column-privileges check)

索引監(jiān)控

SHOW STATUS LIKE 'handler_read%';

MySql wbr>緩存查詢?cè)砼c緩存監(jiān)控 wbr>和 wbr>索引監(jiān)控

輸出說(shuō)明:

Handler_read_first

The number of times the first entry in an index was read. If this value is high, it suggests that the server is doing a lot of full index scans; for example, SELECT col1 FROM foo, assuming that col1 is indexed

索引中的第一項(xiàng)(the first entry in an index)被讀取的次數(shù),如果該值很高,那表明服務(wù)器正在執(zhí)行很多全索引掃描,例如 SELECT col1 FROM foo, 假設(shè)col1上建立了索引

Handler_read_key

The number of requests to read a row based on a key. If this value is high, it is a good indication that your tables are properly indexed for your queries.

基于某個(gè)鍵讀取一行的請(qǐng)求次數(shù)。如果該值很高,那很好的說(shuō)明了,對(duì)于執(zhí)行的請(qǐng)求,表采用了適當(dāng)?shù)乃饕?/p>

Handler_read_next

The number of requests to read the next row in key order. This value is incremented if you are querying an index column with a range constraint or if you are doing an index scan.

根據(jù)鍵順序,讀取下一行的請(qǐng)求次數(shù)。如果你正在查詢一個(gè)帶一系列約束的索引列或者正在執(zhí)行索引掃描時(shí),該值會(huì)增加

Handler_read_prev

The number of requests to read the previous row in key order. This read method is mainly used to optimize ORDER BY ... DESC

根據(jù)鍵的順序,請(qǐng)求讀取前一行的次數(shù)。該讀取方法主要用于優(yōu)化 ORDER BY ... DESC

Handler_read_rnd

The number of requests to read a row based on a fixed position. This value is high if you are doing a lot of queries that require sorting of the result. You probably have a lot of queries that require MySQL to scan entire tables or you have joins that do not use keys properly.

在固定位置讀取一行的請(qǐng)求次數(shù)。該值如果很高,那么說(shuō)明正在執(zhí)行許多要求對(duì)結(jié)果集排序的查詢。可能在執(zhí)行有許多要求全表掃描的查詢,或沒(méi)使用適合鍵的聯(lián)合查詢。

Handler_read_rnd_next

The number of requests to read the next row in the data file. This value is high if you are doing a lot of table scans. Generally this suggests that your tables are not properly indexed or that your queries are not written to take advantage of the indexes you have.

讀取數(shù)據(jù)文件中下一行的請(qǐng)求次數(shù)。該值很高,表明正在執(zhí)行很多全表掃描。通常表明表沒(méi)使用適當(dāng)?shù)乃饕蛘卟樵冋?qǐng)求沒(méi)利用現(xiàn)成的索引。

參考連接:

http://dev.mysql.com/doc/refman/5.7/en/dynindex-statvar.html#statvar-index-H

參考連接:

http://dev.mysql.com/doc/refman/4.1/en/server-status-variables.html

http://dev.mysql.com/doc/refman/4.1/en/query-cache-status-and-maintenance.html

到此這篇關(guān)于MySql 緩存查詢?cè)砼c緩存監(jiān)控和索引監(jiān)控介紹的文章就介紹到這了,更多相關(guān)MySql 緩存查詢內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • MySQL系列之九 mysql查詢緩存及索引
  • 淺談mysql增加索引不生效的幾種情況
  • mysql聯(lián)合索引的使用規(guī)則
  • MySQL 使用索引掃描進(jìn)行排序
  • MySQL索引是啥?不懂就問(wèn)

標(biāo)簽:仙桃 崇左 湘潭 衡水 湖南 黃山 蘭州 銅川

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《MySql 緩存查詢?cè)砼c緩存監(jiān)控和索引監(jiān)控介紹》,本文關(guān)鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266