亲宝软件园·资讯

展开

Mysql共享锁、排他锁、悲观锁、乐观锁

极客飞兔 人气:0

一、常见锁类型

常见锁类型

二、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 

总结

加载全部内容

相关教程
猜你喜欢
用户评论