当前位置:网站首页>【mysql学习笔记30】锁(非教程)
【mysql学习笔记30】锁(非教程)
2022-07-06 07:13:00 【yqs_281876918】
分类
- 全局锁:锁住一个库
- 表级锁:锁住一张表
- 行级锁:锁住一行记录
全局锁
全局锁是对整个数据库进行加锁,锁住以后整个数据库将处于只读状态,其余操作均会阻塞。
应用场景就是一致性数据库备份时需要加全局锁,防止备份过程中数据变动。
使用全局锁
flush tables with read lock;
mysql备份命令
mysqldump -u root -p 1234 db_name>backup.sql
表级锁
分类
- 表锁(又分为read lock和write lock)
- 元数据锁(meta data lock,MDL)
- 意向锁
元数据锁
简介
元数据锁是有mysql系统自行控制的,我们无需显示使用。元数据锁主要是用来维护元数据的数据一致性,在表上有活动事务的时候,不可以对元数据进行写入操作。
理解
元数据可以理解为一张表的结构信息,当一张表上有活动事务的时候,元数据锁会被自动加上,防止操作数据途中表结构被修改导致各种意外情况。
加锁时机
当对一张表进行增删改查的时候,加MDL读锁。
当对一张表结构进行变更操作的时候,加MDL写锁。
加表锁
lock tables 表名 read;
一旦加了读锁,所有连接包括自己都不能写,只能读
lock tables 表名 write;
一旦加了写锁,加锁的连接可以读和写,其它连接既不能读也不能写
解锁
unlock tables;
意向锁
介绍
通过加意向锁,另一个线程在加表锁的时候就不需要遍历所有行来判断是否能加锁,提高了效率。
分类
意向共享锁:由语句select … lock in share mode添加,与表锁共享锁兼容,与排他锁互斥
意向排他锁:由insert、update、delete、select … for update添加,与表锁共享锁以及排他锁都互斥
行级锁
介绍
行级锁,每次操作锁住对应行数据。锁定力度最小,发成锁冲突的概率最低,并发度最高。应用在InnoDB存储引擎中。
InnoDB的数据是基于索引组织的,行锁通过对索引上的索引项加锁来实现,而不是对记录加锁
分类
- 行锁:锁定单个行记录,防止其它事务对此进行update和delete。
- 间隙锁:锁定索引记录间隙(不包含该记录),确保索引记录间隙不变,防止其他事务在这个间隙进行insert,产生欢度。
- 临键锁:是行锁和间隙锁的组合,相当于闭区间的间隙锁
行锁
- 共享锁:允许其他事务读
- 排他锁:禁止其他事务读写
ps:如果增删改的条件没有覆盖索引,那么Innodb会对所有记录加锁,就升级为了表锁
间隙锁/临键锁
边栏推荐
- Win10 64 bit Mitsubishi PLC software appears oleaut32 DLL access denied
- [daily question] 729 My schedule I
- Cookie技术&Session技术&ServletContext对象
- The ECU of 21 Audi q5l 45tfsi brushes is upgraded to master special adjustment, and the horsepower is safely and stably increased to 305 horsepower
- ROS learning_ Basics
- leetcode1020. 飞地的数量(中等)
- 【服务器数据恢复】IBM服务器raid5两块硬盘离线数据恢复案例
- How are the open source Netease cloud music API projects implemented?
- [hot100] 739. Température quotidienne
- Uncaught TypeError: Cannot red propertites of undefined(reading ‘beforeEach‘)解决方案
猜你喜欢
WPF之MVVM
数据仓库建设思维导图
[server data recovery] case of offline data recovery of two hard disks of IBM server RAID5
LeetCode 78:子集
ORACLE列转行--某字段按指定分隔符转多行
Go learning -- implementing generics based on reflection and empty interfaces
Configure raspberry pie access network
巴比特 | 元宇宙每日必读:中国互联网企业涌入元宇宙的群像:“只有各种求生欲,没有前瞻创新的雄心”...
Detailed explanation | detailed explanation of internal mechanism of industrial robot
作者已死?AI正用藝術征服人類
随机推荐
Go learning -- implementing generics based on reflection and empty interfaces
leetcode35. 搜索插入位置(简单,找插入位置,不同写法)
Establishment and operation of cloud platform open source project environment
L'auteur est mort? Ai utilise l'art pour conquérir l'humanité
Prefix and array series
Markdown 中设置图片图注
SSM learning
Briefly describe the differences between indexes, primary keys, unique indexes, and joint indexes in mysql, and how they affect the performance of the database (in terms of reading and writing)
A brief introduction of reverseme in misc in the world of attack and defense
作者已死?AI正用艺术征服人类
supervisor 使用文档
Uncaught typeerror: cannot red properties of undefined (reading 'beforeeach') solution
JDBC learning notes
漏了监控:Zabbix对Eureka instance状态监控
leetcode704. 二分查找(查找某个元素,简单,不同写法)
leetcode841. 钥匙和房间(中等)
Leetcode35. search the insertion position (simple, find the insertion position, different writing methods)
On the world of NDK (2)
Leetcode 78: subset
idea控制台彩色日志