使用PHP的MongoDB自动增量ID

时间:2018-06-27 16:49:30

标签: php mongodb auto-increment

当前,我正在使用此php代码在MongoDB中创建我自己的自动增量ID。

$mongo = new MongoDB\Driver\Manager("mongodb://10.1.1.111:27017");

$find = [ '_id' => 'campaignid' ];
$query = new MongoDB\Driver\Query($find, [ ]);
$rows = $mongo->executeQuery('testdb.counters', $query);
$arr = $rows->toArray();

$oldId = 0;
if(count($arr) > 0)
{
    $old = array_pop($arr);
    $oldId = intval($old->seq);
}

$nextId = ++$oldId;

$set = [ '_id' => 'campaignid', 'seq' => $nextId ];
$insRec = new MongoDB\Driver\BulkWrite;
$insRec->update($find, ['$set' => $set], ['multi' => false, 'upsert' => true]);
$writeConcern = new MongoDB\Driver\WriteConcern(MongoDB\Driver\WriteConcern::MAJORITY, 1000);
$result = $mongo->executeBulkWrite('testdb.counters', $insRec, $writeConcern);

我必须获取旧ID,然后递增并写回。我认为MongoDB\Driver\Manager::executeReadWriteCommand有更好的方法,但我找不到它。

我发现this在哪里是findAndModify的解决方案,但它是为MongoClient编写的,deprecated

有什么想法使用executeReadWriteCommand还是更好的方法?

2 个答案:

答案 0 :(得分:0)

我找到了解决方案。只想分享,如果有人也在寻找。

我使用mongo-php-library使其与新的MongoDB驱动程序一起使用。但是不能使用@malarzm之类的findAndModify进行注释,因为它只是FindOneAndXXXX的内部函数。

我使用了findOneAndUpdate

$mongo = new MongoDB\Client("mongodb://10.1.1.111:27017");
$collection = $mongo->testdb->counters;
$result =  $collection->findOneAndUpdate(
            [ '_id' => 'campaignid' ],
            [ '$inc' => [ 'seq' => 1] ],
            [ 'upsert' => true,
              'projection' => [ 'seq' => 1 ],
              'returnDocument' => MongoDB\Operation\FindOneAndUpdate::RETURN_DOCUMENT_AFTER
             ]
);

$nextId = $result['seq'];

答案 1 :(得分:0)

这是另一种解决方案。假设您要添加文档并增加ID。您可以执行以下操作:

$mongo->testdb->updateOne(
   ['myidfield' => '123'],
   [
     '$set' => ['name' => 'John'],
     '$inc' => ['id' => 1]
   ],
   [
     'upsert' => true
   ]
);