MongoDB\Driver\BulkWrite::insert

(mongodb >=1.0.0)

MongoDB\Driver\BulkWrite::insertAdd an insert operation to the bulk

Описание

public mixed MongoDB\Driver\BulkWrite::insert ( array|object $document )

Adds an insert operation to the MongoDB\Driver\BulkWrite.

Список параметров

document (array|object)

A document to insert.

Возвращаемые значения

If the document did not have an _id, a MongoDB\BSON\ObjectID will be generated and returned; otherwise, no value is returned.

Ошибки

Примеры

Пример #1 MongoDB\Driver\BulkWrite::insert() example

<?php

$bulk 
= new MongoDB\Driver\BulkWrite;

$document1 = ['title' => 'one'];
$document2 = ['_id' => 'custom ID''title' => 'two'];
$document3 = ['_id' => new MongoDB\BSON\ObjectID'title' => 'three'];

$_id1 $bulk->insert($document1);
$_id2 $bulk->insert($document2);
$_id3 $bulk->insert($document3);

var_dump($_id1$_id2$_id3);

$manager = new MongoDB\Driver\Manager('mongodb://localhost:27017');
$writeConcern = new MongoDB\Driver\WriteConcern(MongoDB\Driver\WriteConcern::MAJORITY1000);
$result $manager->executeBulkWrite('db.collection'$bulk$writeConcern);

?>

Результатом выполнения данного примера будет что-то подобное:

object(MongoDB\BSON\ObjectID)#3 (1) {
  ["oid"]=>
  string(24) "54d51146bd21b91405401d92"
}
NULL
NULL

Коментарии

404 Not Found

404 Not Found


nginx

    Поддержать сайт на родительском проекте КГБ