Mysql锁详解

1.LOCK tables命令

1.1. LOCK tables命令介绍

官网介绍 LOCK TABLES
tbl_name [[AS] alias] lock_type
[, tbl_name [[AS] alias] lock_type] …

lock_type:
READ [LOCAL]
| [LOW_PRIORITY] WRITE

UNLOCK TABLES
MySQL enables client sessions to acquire table locks explicitly for the purpose of cooperating with other sessions for access to tables, or to prevent other sessions from modifying tables during periods when a session requires exclusive access to them. A session can acquire or release locks only for itself. One session cannot acquire locks for another session or release locks held by another session.

Locks may be used to emulate transactions or to get more speed when updating tables. This is explained in more detail later in this section.

LOCK TABLES explicitly acquires table locks for the current client session. Table locks can be acquired for base tables or (as of MySQL 5.0.6) views. You must have the LOCK TABLES privilege, and the SELECT privilege for each object to be locked.

lock tables 命令是为当前线程锁定表.这里有2种类型的锁定,一种是读锁定,用命令 lock tables tablename read;另外一种是写锁定,用命令lock tables tablename write.

1.2.lock tables 读锁定

如果一个线程获得在一个表上的read锁,那么该线程和所有其他线程只能从表中读数据,不能进行任何写操作。
下边我们测试下,测试表为edu_chapter表。
不同的线程,可以通过开多个命令行MySQL客户端来实现:

1.2.1. 使用命令LOCK TABLES edu_chapter READ;锁表
  • LOCK TABLES edu_chapter READ local; 加local锁表的结果一致
1.2.2. 开两个线程去insert数据
  • 加锁线程会话无法执行insert语句
  • 其他线程在排队等待
1.2.3. 开两个线程去update数据
  • 加锁线程会话无法执行update语句
  • 其他线程在排队等待
1.2.4. 开两个线程去delete数据
  • 加锁线程会话无法执行delete语句
  • 其他线程在排队等待
1.2.5. 开两个线程去select数据
  • 两个线程都可以查询数据

1.3.lock tables 写锁定

如果一个线程在一个表上得到一个 WRITE 锁,那么只有拥有这个锁的线程可以从表中读取和写表。其它的线程被阻塞。
当前线程关闭时,自动退出封闭空间,释放所有表锁,无论有没有执行 unlock tables

1.3.1. 使用命令LOCK TABLES edu_chapter WRITE;锁表

LOCK TABLES t READ 使用_数据

1.3.2. 开两个线程去select数据
  • 加锁线程和其他线程会话都在等待释放锁
1.3.3. 开两个线程去insert数据
  • 加锁线程会话可以执行insert语句
  • 其他线程在排队等待
1.3.4. 开两个线程去update数据
  • 加锁线程会话可以执行update语句
  • 其他线程在排队等待
1.3.5. 开两个线程去update数据
  • 加锁线程会话可以执行delete语句
  • 其他线程在排队等待

备注:示例均是基于InnoDB引擎

LOCK TABLES t READ 使用_mysql_02