mysql数据竞争_递增字段时如何确保MySQL数据库中没有竞争条件??mysql-问答-阿里云开发者社区-阿里云...

这是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行,则其他人在此同时更新了该表。您必须重新开始-也就是说,选择新值,执行应用程序逻辑,然后再次尝试更新。来源:stack overflow

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值