Redbean的交易无效

时间:2016-06-01 11:00:56

标签: php mysql transactions redbean

我今天在这里,因为我无法弄清楚使用RedbeanPHP的交易有什么问题。我猜问题就在于MySQL的'autocommit'值,因为它总是开启。

长话短说:
1)已发出R::freeze(true);
2)尝试了R::begin() .. R::commit()R::transaction($callback)语法

这是一个带有测试代码的简单类:

class TestTransactions{
  public function testme($args){
    $tstname = $args;
    $src = R::findOne('batchscripts', 'batchclass = :tstname',
      array(':tstname' => $tstname));

    sleep(2);

    if($src){
      $src->alivesince = intval($src->alivesince) + 1;
      R::store($src);
    } else {
      $bean = R::dispense('batchscripts');
      $bean->batchclass = $tstname;
      $bean->alivesince = 0;
      $bean->start = R::$f->now();
      R::store($bean);
    }
  }

  public function testCallback(){
    $that = &$this;
    R::freeze(true);
    try{
      $ret2 = R::transaction(function() use ($that){
        //uncomment me to see autocommit value
        //$g = R::getAll("show global variables like 'autocommit'");
        //$g = array_pop($g);
        //var_dump($g);
        $that->testme('instance');
      });
    } catch (Exception $e){
      throw $e;
    }

  }

  public function testProcedural(){
    R::freeze(true);
    try{
      R::begin();
      $this->testme('instance2');
      R::commit();
    } catch (Exception $e) {
      R::rollback();
      throw $e;
    }

  }

  public function test(){

    $this->testCallback();
    $this->testProcedural();

  }
}

同时运行带有更多PHP脚本的test()函数(我试过12),数据库条目不正确:

我希望有

batchclass: 'instance',  alivesince: 11
batchclass: 'instance2', alivesince: 11

相反,我得到了

batchclass: 'instance',  alivesince: 7
batchclass: 'instance2', alivesince: 7

甚至

batchclass: 'instance',  alivesince: 5
batchclass: 'instance2', alivesince: 5

取决于我运行脚本的那一刻。

我在这里缺少什么?

谢谢

1 个答案:

答案 0 :(得分:0)

从不同的角度看问题,我发现了我所缺少的东西。

如另一篇文章a multithread transaction所述,使用MySQL不适用。处理同步访问(作为互斥锁)的代码的一部分是必须的。

离开这里的问题,因为我认为它对其他程序员有用。

干杯