Skip to content

Commit

Permalink
Merge pull request #227 from songzhibin97/patch-37
Browse files Browse the repository at this point in the history
Update ch7.md
  • Loading branch information
yingang authored May 8, 2022
2 parents 5b8d458 + e3c6435 commit 032af11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ch7.md
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ COMMIT;

#### 比较并设置(CAS)

在不提供事务的数据库中,有时会发现一种原子操作:** 比较并设置(CAS, 即 Compare And Set,先前在 “[单对象写入](#单对象写入)” 中提到)。此操作的目的是为了避免丢失更新:只有当前值从上次读取时一直未改变,才允许更新发生。如果当前值与先前读取的值不匹配,则更新不起作用,且必须重试读取 - 修改 - 写入序列。
在不提供事务的数据库中,有时会发现一种原子操作:**比较并设置**(CAS, 即 Compare And Set,先前在 “[单对象写入](#单对象写入)” 中提到)。此操作的目的是为了避免丢失更新:只有当前值从上次读取时一直未改变,才允许更新发生。如果当前值与先前读取的值不匹配,则更新不起作用,且必须重试读取 - 修改 - 写入序列。

例如,为了防止两个用户同时更新同一个 wiki 页面,可以尝试类似这样的方式,只有当用户开始编辑页面内容时,才会发生更新:

Expand Down

0 comments on commit 032af11

Please sign in to comment.