mysql5.1和mysql5.5建立索引速度對比

來源:互聯網
上載者:User

在MySQL5.1.X版本裡,叢集索引建立和刪除的過程:

1、 建立一個和原表結構一樣的空表,然後建立叢集索引;

2、 拷貝原表的資料到新表,這時會對原表加一個獨佔鎖定,其他的會話dml操作會阻塞,從而保證資料的一致性;

3、 複製完畢後刪除掉原表,並把新表改名為原表。 

非叢集索引建立和刪除的過程:

1、 建立一個和原表結構一樣的空表,然後建立非叢集索引;

2、拷貝原表的資料到新表,這時會對原表加一個共用鎖定,其他的會話不能更新,但可以查詢資料,從而保證資料的一致性;

3、複製完畢後刪除掉原表,並把新表改名為原表。

在MySQL5.5.X版本開始, 建立和刪除非叢集索引不用複製整個表的內容,

只需更新索引頁,和之前相比,速度會更快。但建立叢集索引主鍵)時,或者是外鍵時,還是需要複製整個表的內容,因為叢集索引是把 primary key 以及 row data 儲存在一起的,而 secondary index 則是單獨存放,然後有個指標指向 primary key。

下面是建立非叢集索引的速度對比:

650) this.width=650;" border="0" src="http://www.bkjia.com/uploads/allimg/131229/1929226008-0.jpg" alt="" />

650) this.width=650;" border="0" src="http://www.bkjia.com/uploads/allimg/131229/1929225111-1.jpg" alt="" />

參見MySQL5.5手冊:

650) this.width=650;" border="0" src="http://www.bkjia.com/uploads/allimg/131229/1929224547-2.jpg" alt="" />

650) this.width=650;" border="0" src="http://www.bkjia.com/uploads/allimg/131229/1929226062-3.jpg" alt="" />

 

本文出自 “賀春暘的技術專欄” 部落格,請務必保留此出處http://hcymysql.blog.51cto.com/5223301/986271

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.