Skip to content

Commit

Permalink
auto
Browse files Browse the repository at this point in the history
  • Loading branch information
CyC2018 authored Mar 23, 2018
1 parent d9e3b68 commit 5b4b547
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions notes/数据库系统原理.md
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ InnoDB 的 MVCC 使用到的快照存储在 Undo 日志中,该日志通过回

## 快照读与当前读

快照读读指的是读取快照中的数据,而当前读指的是读取最新的数据。
快照读指的是读取快照中的数据,而当前读指的是读取最新的数据。

当前读:

Expand All @@ -322,7 +322,7 @@ update ;
delete;
```

引入当前读的目的主要是为了免去加锁操作带来的性能开销,但是快照读需要加锁
引入快照读的目的主要是为了免去加锁操作带来的性能开销,但是当前读需要加锁

# 六、Next-Key Locks

Expand Down

0 comments on commit 5b4b547

Please sign in to comment.