今天就讲讲MySQL的锁

主讲:Mysql的悲观锁 和 乐观锁
官方:If you query data and then insert or update related data within the same transaction, the regular SELECT statement does not give enough protection. Other transactions can update or delete the same rows you just queried. InnoDB supports two types of locking reads that offer extra safety:
意思就是你普通的查询sql,并有保护功能,也就是没有锁,会出现事务执行的时候,数据出现错乱,然而MySQL提供了innodb引擎支持2种锁机制。

1.悲观锁:
    概念:
        a) 官方:For index records the search encounters, SELECT … FOR UPDATE locks the rows and any associated index entries, the same as if you issued an UPDATE statement for those rows. Other transactions are blocked from updating those rows, from doing SELECT … LOCK IN SHARE MODE, or from reading the data in certain transaction isolation levels. Consistent reads ignore any locks set on the records that exist in the read view. (Old versions of a record cannot be locked; they are reconstructed by applying undo logs on an in-memory copy of the record.
        b) 简单粗俗点就是直接占为己有,等自己用完了才给别人去使用,这种能保证数据的操作不会出错,获得这个锁的人可以修改,查询数据,其他人则什么操作都做不了。
    使用语法:select * from tb for update

2.乐观锁:
    概念:
        a) 官方:SELECT ... LOCK IN SHARE MODE sets a shared mode lock on the rows read. A shared mode lock enables other sessions to read the rows but not to modify them. The rows read are the latest available, so if they belong to another transaction that has not yet committed, the read blocks until that transaction ends.
        b)简单点说就是进行宽松锁的限制,也就是别人也可以叠加锁上去,然后大家也都可以进行select操作,但不能进行update或者delete操作(也就是修改操作),哪怕大家的事务都还没提交,大家都可以普通的 select 都是可以查询出数据的一定要注意:这个时候select是没有影响的
    使用语法:select...lock in share mode

下面内容一定要注意:
All locks set by LOCK IN SHARE MODE and FOR UPDATE queries are released when the transaction is committed or rolled back.

Note
Locking of rows for update using SELECT FOR UPDATE only applies when autocommit is disabled (either by beginning transaction with START TRANSACTION or by setting autocommit to 0. If autocommit is enabled, the rows matching the specification are not locked.

所有的锁都在事务回滚或者结束后释放。
注意:
使用select..for update 进行行锁,只有在禁用autocommit的时候生效(或者在START TRANSACTION 或者 设置 autocommit为0.)如果autocommit是启用的,那这一行的for update是不会生效的。

        更多精彩内容也可以关注此二维码:
      

原文地址:https://segmentfault.com/a/1190000015798187

最新文章

  1. win10 系统亮度调节
  2. Linux下设置Mysql数据库编码
  3. lua table remove元素的问题
  4. WPF Extended WPF Toolkit
  5. 电话激活windows server 2012的解决方案
  6. mrtg
  7. Unity3D定制新建C#文件的头描述
  8. return,exit,die
  9. Android开发中如何调用摄像头的功能
  10. Android 添加系统服务
  11. Linux web工程部署远程必备软件安装
  12. MFC/VC++ 响应回车键的实现
  13. phpcms 标签解析
  14. Dubbo与Zookeeper、SpringMVC整合和利用(负载均衡、容错)
  15. 【原创】python实现视频内的face swap(换脸)
  16. UML 中extend和include的区别
  17. JS正则与PHP正则
  18. 每天一个linux命令(16):which
  19. golang http proxy反向代理
  20. 纯CSS绘制mac代码

热门文章

  1. 【CSU 1803】2016
  2. 重新定义数据库历史的时刻——时间序列数据库Schwartz认为InfluxDB最有前途,Elasticsearch也不错
  3. JavaScript 解析读取XML文档 实例代码(转)
  4. Builder Design pattern
  5. PCB 机器学习(ML.NET)初体验实现PCB加投率预测
  6. GoAhead4.1.0 开发总结二(自定义使用)
  7. SpringCloud(Finchley版本)中Zull过滤器ResponseBoby返回中文乱码解决方案
  8. xshell、xftp最新版下载方法
  9. virtualwrapper使用
  10. C#基础 for 穷举、迭代