小编典典

递增字段时如何确保MySQL数据库中没有竞争条件?

mysql

当两个连接要更新同一条记录时,如何防止MySQL数据库中的竞争状况?

例如,连接1要增加“尝试”计数器。第二个连接也想这样做。两个连接SELECT都“尝试”计数,增加值,两个UPDATE“尝试” 都增加值。突然,“
tries”仅是“ tries + 1”,而不是“ tries + 2”,因为两个连接都具有相同的“ tries”并将其增加1。

如何解决这个问题呢?


阅读 305

收藏
2020-05-17

共1个答案

小编典典

这是3种不同的方法:

原子更新

update table set tries=tries+1 where condition=value;

这将是原子完成的。

使用交易

如果确实需要首先选择该值并在应用程序中对其进行更新,则可能需要使用事务。这意味着您必须使用InnoDB,而不是MyISAM表。您的查询将类似于:

BEGIN; //or any method in the API you use that starts a transaction
select tries from table where condition=value for update;
.. do application logic to add to `tries`
update table set tries=newvalue where condition=value;
END;

如果事务失败,则可能需要手动重试。

版本方案

一种常见的方法是在表中引入版本列。您的查询将执行以下操作:

select tries,version from table where condition=value;
.. do application logic, and remember the old version value.
update table set tries=newvalue,version=version + 1 where condition=value and version=oldversion;

如果该更新失败/返回受影响的0行,则其他人在此同时更新了该表。您必须重新开始-也就是说,选择新值,执行应用程序逻辑,然后再次尝试更新。

2020-05-17