MySql unique的實現原理簡析

來源:互聯網
上載者:User

標籤:rem   table   執行時間   實現原理   res   engine   阻塞   pre   com   

1、測試過程如下:

CREATE TABLE `test` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `name` varchar(100) DEFAULT NULL,  PRIMARY KEY (`id`),  UNIQUE KEY `name` (`name`)) ENGINE=InnoDB DEFAULT CHARSET=utf8

 

事務1:                                                       事務2:
mysql> select * from test;                                            +----+-------+| id | name |+----+-------+| 1 | name1 |+----+-------+1 row in set (0.00 sec) mysql> start transaction;                                              start transaction;Query OK, 0 rows affected (0.00 sec)mysql> insert into test(name) values(‘name2‘);(成功)                               
                                                             insert into test(name)  values(‘name3‘); (成功,和事務1之間沒有阻塞)

     insert into test(name)  values(‘name3‘);(失敗,因為和事務未commit的資料衝突了)
    ERROR 1205 (HY000): Lock wait timeout exceeded; try restarting transaction
                                                                                                        commit;                        

commit;
                                                   

 2、分析:對於unique的insert,如果不同事務之間存在非unqiue衝突,則事務會等待衝突的事務提交,也就是等待鎖。如果不存在衝突則能正在執行更新。

          mysql的某一列為unique屬性時,會為該列建索引,所以該列不能太大。

                 因為大事務的執行時間較長,那麼別的事務如果衝突了等待鎖的事務也較長,那麼事務會因為鎖逾時而造成整個資料庫的輸送量的降低。對於小事務可以建unique。

MySql unique的實現原理簡析

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.