概述
场景:
一个商品有库存,下单时先检查库存,如果>0,把库存-1然后下单,如果<=0,则不能下单,事务包含两条sql语句:
select quantity from products WHERE id=3;
update productsset quantity = ($quantity-1) WHERE id=3;
在并发情况下,可能会把库存减为负数(两个进程同时select出来的都>0,然后都会执行update),怎么办呢?
方法1:
InnoDB支持通过特定的语句进行显示加锁:
select...lock in share mode
select...for udpate
select quantity from products WHERE id=3 forupdate;
update productsset quantity = ($quantity-1) WHERE id=3;
但是执行for update会产生一些其他的影响
1.select语句变慢
2.一些优化无法正常使用,例如索引覆盖扫描
3.很容易造成服务器的锁争用问题
方法二:
把udpate语句写在前边,先把数量-1,之后select出库存如果>-1就commit,否则rollback。
update products set quantity = quantity-1 WHERE id=3;select quantity from products WHERE id=3 for update;
最后
以上就是外向花生为你收集整理的mysql update 负数_解决并发情况下库存减为负数问题--update2016.04.24的全部内容,希望文章能够帮你解决mysql update 负数_解决并发情况下库存减为负数问题--update2016.04.24所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复