乐观锁库存及幂等性控制

直接上SQL 

        库存SQL

     

UPDATE csh_sub_promotion
SET rest_stock_count = rest_stock_count-#{count} WHERE id = #{subId} AND
rest_stock_count-#{count}>=0

id必须为索引,不然是表锁,普通mysql能达到并发300,SSD最高达到并发800.


幂等性控制

 

UPDATE csh_sub_promotion
SET state = 1 WHERE id = #{subId} AND

state=2

或者 使用 insert 表唯一索引的方式

if (1 == dao.updateReturnInt("OrderMapper.updateStock", pd)) {

    xx

    //ps 阿里云规范说 乐观锁要重试三次

}


有的人会疑惑 update 会导致行锁,如果程序挂了,事务没有提交,岂不是会一致堵塞在那里,阻碍别的update语句。 经过测试程序挂了,mysql会自己自动放弃锁,使别的update语句顺利执行。

你可能感兴趣的:(项目方案)