php – 如何使用Doctrine在死锁后重试事务?

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了php – 如何使用Doctrine在死锁后重试事务?脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在编写一个 PHP函数,它将大量数据存储/更新到表中,这可能会导致死锁.我试图调查如何使用Doctrine重试失败的事务,但遗憾的是无法在线查找任何信息.我最终写了下面的代码
$retry = 0;
 $done = false;
 while (!$done and $retry < 3) {
     try {

         $this->entITyManager->flush();
         $done = true;

     } catch (\Exception $e) {
         sleep(1);

         $retry++;
     }
 }

 if ($retry == 3) {
     throw new Exception(
         "[Exception: MysqL Deadlock] Too many PEople accessing the server at the same time. Try again in few minutes"
     );
 }

我的问题:这种方法是否有可能在数据库中插入重复项?如果是这样,我怎么能强迫Doctrine回滚交易呢?

死锁返回错误1213,您应该在客户端处理该错误

请注意,死锁和锁定等待是不同的事情.陷入僵局,没有“失败”的交易:他们都有罪.无法保证哪一个将被回滚.

您必须使用回滚,您的样式代码将插入重复.例如你应该:

$retry = 0;

$done = false;


$this->entityManager->getConnection()->beginTransaction(); // suspend auto-commit

while (!$done and $retry < 3) {

    try {

        $this->entityManager->flush();

        $this->entityManager->getConnection()->commit(); // commit if succesfull

        $done = true;

    } catch (\Exception $e) {

        $this->entityManager->getConnection()->rollback(); // transaction marked for rollback only

        $retry++;

    }

}

希望这有帮助.

脚本宝典总结

以上是脚本宝典为你收集整理的php – 如何使用Doctrine在死锁后重试事务?全部内容,希望文章能够帮你解决php – 如何使用Doctrine在死锁后重试事务?所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。