1.索引(Index)是幫助MySQL高效獲取數據的數據結構,可以理解為“排好序的快速查找數據結構”,在數據之外,資料庫系統還維護著滿足特定查找演算法的數據結構,這些數據結構以某種方式引用(指向)數據,這樣就可以在這些數據結構上實現高級查找演算法 2.建表的時候創建索引,創建群發已發送郵件表:creat ...
1.索引(Index)是幫助MySQL高效獲取數據的數據結構,可以理解為“排好序的快速查找數據結構”,在數據之外,資料庫系統還維護著滿足特定查找演算法的數據結構,這些數據結構以某種方式引用(指向)數據,這樣就可以在這些數據結構上實現高級查找演算法
2.建表的時候創建索引,創建群發已發送郵件表:
create table mass_mail_send(
id int auto_increment primary key,
sender varchar(125) not null default '',
mass_id int not null default 0,
subject varchar(255) not null default '',
location varchar(255) not null default '',
send_time int not null default 0,
user_email_id int not null default 0,
index (mass_id),
index (user_email_id)
)engine=innodb charset utf8;
3.在mass_id和user_email_id上創建了普通索引
4.使用explain檢測索引是否被用到了
select_type:SIMPLE(普通的select),PRIMARY(有子查詢),UNION(有聯合查詢)
table:輸出行所用的表
type:連接類型 從最好到最差的連接類型為const、eq_reg、ref、range、indexhe和all
possible_keys:顯示可能應用在這張表中的索引
key: 實際使用的索引
key_len:使用的索引的長度。在不損失精確性的情況下,長度越短越好
5.查看索引的使用情況統計
1.show status like 'Handler_read%';查看索引的使用情況
Handler_read_first 全索引掃描
Handler_read_key 數值越高越好,高效的使用了索引
Handler_read_next 越小越好
Handler_read_rnd 沒有使用索引或者使用太多排序
Handler_read_prev 代表讀取索引的上列,一般發生在ORDER BY … DESC。
Handler_read_rnd_next 進行數據文件掃描,越小越好