Mysql

关注公众号 jb51net

关闭
首页 > 数据库 > Mysql > Mysql共享锁、排他锁、悲观锁、乐观锁

一文搞懂Mysql中的共享锁、排他锁、悲观锁、乐观锁及使用场景

作者:极客飞兔

刚开始学习MySQL中锁的时候,网上一查出来一堆,什么表锁、行锁、读锁、写锁、悲观锁、乐观锁等等等,直接整个人就懵了,下面这篇文章主要给大家介绍了关于Mysql中共享锁、排他锁、悲观锁、乐观锁及使用场景的相关资料,需要的朋友可以参考下

一、常见锁类型

常见锁类型

二、Mysql引擎介绍

show variables like '%storage_engine%';

三、常用引擎间的区别 

四、共享锁与排他锁

数据库的增删改操作默认都会加排他锁,而查询不会加任何锁。

共享锁:对某一资源加共享锁,自身可以读该资源,其他人也可以读该资源(也可以再继续加共享锁,即 共享锁可多个共存),但无法修改。要想修改就必须等所有共享锁都释放完之后。

排他锁:对某一资源加排他锁,自身可以进行增删改查,其他人无法进行任何操作。

//共享锁
select * from 表名 lock in share mode
 
//排他锁
select * from 表名 for update

五、排他锁的实际应用

T1: select * from 表名 lock in share mode //假设还未返回结果
 
T2: update 表名 set name='autofelix'

六、共享锁的实际应用

T1: select * from table lock in share mode
 
T2: select * from table lock in share mode

七、死锁的发生

T1: 开启事务,执行查询更新两个操作
 
     select * from table lock in share mode
 
     update table set column1='hello'
 
T2: 开启事务,执行查询更新两个操作
 
     select * from table lock in share mode
 
     update table set column1='world'

八、另一种发生死锁的情景

T1: begin
     update table set content='hello' where id=10
 
T2: begin
     update table set content='world' where id=20

九、死锁的解决方式

T1: begin
 
     select * from table for update
 
     update table set content='hello'
 
T2: begin
 
     select * from table for update
 
     update table set content='world'
T1: begin
 
     select * from table [加更新锁操作]
 
     update table set content='hello'
 
T2: begin
 
     select * from table [加更新锁操作]
 
     update table set content='world'

十、意向锁和计划锁

十一、乐观锁和悲观锁

update table set num=num-1 where id=10 and version=12 

总结

到此这篇关于一文搞懂Mysql中共享锁、排他锁、悲观锁、乐观锁及使用场景的文章就介绍到这了,更多相关Mysql共享锁、排他锁、悲观锁、乐观锁内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文