我正在用PHP编写一个彩票程序,因为这个程序会有很大的并发请求,我每个奖项的数量有限,在这个例子中是10。我不想看到任何奖品超过股票。所以我将整个逻辑放在Redis的事务中(我使用predis(https://github.com/nrk/predis)作为我的PHP redis客户端),但它没有工作,在对此程序的请求超过10次之后,我发现了更多数据库中的10条以上我无法理解的记录。有谁知道原因吗?非常感谢您的解释,谢谢!
这是我的PHP代码:
$this->load->model('Lottery_model');
$money = $this->_get_lottery();//which prize do you get
if($money > 0){
$key = $this->_get_sum_key($money);
$dbmodel = $this->Lottery_model;
// Executes a transaction inside the given callable block:
$responses = $redis->transaction(function ($tx) use ($key, $money, $dbmodel){
$qty = intval($tx->get($key));
if($qty < 10){
//not exceed the stock limit
$dbmodel->add($customer, $money); // insert record into db
$tx->incr($key);
}else{
log_message('debug', $money . ' dollar exceed the limit');
}
});
}else{
log_message('debug', 'you are fail');
}
在阅读有关Redis交易的文档后,我知道上面代码的使用是完全错误的。然后我使用乐观锁和检查和设置将其修改为以下版本。
$options = array(
'cas' => true, // Initialize with support for CAS operations
'watch' => $key, // Key that needs to be WATCHed to detect changes
'retry' => 3,
);
try{
$responses = $redis->transaction($options, function ($tx) use ($key, $money, $username, $dbmodel, &$qty){
$qty = intval($tx->get($key));
if($qty < 10){
$tx->multi();
$tx->incr($key);
$dbmodel->add($username, $money);// insert into mysql db
}else{
log_message('debug', $money . ' dollar exceed the limit');
}
});
}catch(PredisException $e){
log_message('debug', 'redis transaction failed');
}
但问题是数据库中的记录数超过了奖品的限制,Redis中保存的总数不会。解决这类问题的常见解决方案是什么?在这种情况下,我是否必须锁定INNodb表?
答案 0 :(得分:1)
您需要了解Redis事务的工作原理 - 简而言之,所有执行事务的命令都由客户端缓存(在您的情况下为predis),然后一次性触发到服务器。您的代码尝试在执行事务之前使用读取请求的结果(get
)。有关详细信息,请参阅文档:https://redis.io/topics/transactions
请阅读交易外的qty
,并使用WATCH
来防止竞争更新,或将此逻辑完整移至Lua脚本。