dongqian7545 2019-03-16 17:24
浏览 147
已采纳

php mongodb library abortTransaction不起作用

i'm trying to learn mongodb transactions using php-mongodb library v1.5 but i've found some problemes.

i've tried to start, commit, and abort transaction using the giving methods but abortTransaction is not working for me :

    $session = self::$instance->startSession();

    $this->db = self::$instance->{"mydb"};

    $session->startTransaction();

    $this->db->users->deleteOne([

        '_id' => new MongoDB\BSON\ObjectId('5c88e197df815495df201a38')
    ]);

    $session->abortTransaction();

    $session->endSession();

the transaction is always commited even after the abort action !!!

what i'm missing here please save my day :(

  • 写回答

1条回答 默认 最新

  • dspx15491 2019-03-18 11:46
    关注

    the transaction is always commited even after the abort action

    This is because the delete operation doesn't utilise the session object that you have instantiated. You need to pass the session as a $options parameter MongoDB\Collection::deleteOne(). Otherwise it will execute outside of the transaction. For example:

    $session->startTransaction();
    $this->db->users->deleteOne(
       ['_id' => new MongoDB\BSON\ObjectId('5c88e197df815495df201a38')], 
       ['session' => $session]
    );
    

    See also MongoDB Transactions for more information

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 下图接收小电路,谁知道原理
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度