Results of 1 - 10 of about 42 for bulk (0.015 sec.)
- The MongoDB\Driver\BulkWrite class 11922
- « MongoDB\Driver\Query::__construct MongoDB\Driver\BulkWrite::__construct » PHP Manual MongoDB\D
...
river The MongoDB\Driver\BulkWrite class The MongoDB\Driver\BulkWrite class (mon ...
godb >=1.0.0) はじめに The MongoDB\Driver\BulkWrite collects one or more write operations that sh ...
may be executed via MongoDB\Driver\Manager::executeBulkWrite() . Write operations may either be ordered (d ...
n attempted. クラス概要 final class MongoDB\Driver\BulkWrite implements Countable { /* メソッド */ public ...
-
https://man.plustar.jp/php/class.mongodb-driver-bulkwrite.html
- [similar]
- Returns any write errors that occurred 11736
- « MongoDB\Driver\WriteResult::getWriteConcernError MongoDB\Driver\WriteResult::isAcknowledged »
...
= new MongoDB \ Driver \ Manager ; /* By default, bulk write operations are executed serially in order an ...
d * execution will stop after the first error. */ $bulk = new MongoDB \ Driver \ BulkWrite ; $bulk -> inse ...
rt ([ '_id' => 1 ]); $bulk -> insert ([ '_id' => 2 ]); $bulk -> insert ([ '_i ...
d' => 2 ]); $bulk -> insert ([ '_id' => 3 ]); $bulk -> insert ([ '_i ...
-
https://man.plustar.jp/php/mongodb-driver-writeresult.getwriteerrors.html
- [similar]
- Count number of write operations in the bulk 10776
- « MongoDB\Driver\BulkWrite::__construct MongoDB\Driver\BulkWrite::delete » PHP Manual MongoDB\Dr
...
iver\BulkWrite Count number of write operations in the bulk ...
MongoDB\Driver\BulkWrite::count (mongodb >=1.0.0) MongoDB\Driver\BulkW ...
e::count — Count number of write operations in the bulk 説明 public MongoDB\Driver\BulkWrite::count (): in ...
er of write operations added to the MongoDB\Driver\BulkWrite object. パラメータ この関数にはパラメータはあ ...
-
https://man.plustar.jp/php/mongodb-driver-bulkwrite.count.html
- [similar]
- Execute one or more write operations 9956
- « MongoDB\Driver\Manager::createClientEncryption MongoDB\Driver\Manager::executeCommand » PHP Ma
...
re write operations MongoDB\Driver\Manager::executeBulkWrite (mongodb >=1.0.0) MongoDB\Driver\Manager::exe ...
cuteBulkWrite — Execute one or more write operations 説明 f ...
inal public MongoDB\Driver\Manager::executeBulkWrite ( string $namespace , MongoDB\Driver\BulkWrit ...
e $bulk , array $options = array() ): MongoDB\Driver\Write ...
-
https://man.plustar.jp/php/mongodb-driver-manager.executebulkwrite.html
- [similar]
- Add an insert operation to the bulk 9708
- « MongoDB\Driver\BulkWrite::delete MongoDB\Driver\BulkWrite::update » PHP Manual MongoDB\Driver\
...
BulkWrite Add an insert operation to the bulk MongoDB\Driver\BulkWrite::insert (mongodb >=1.0.0) ...
MongoDB\Driver\BulkWrite::insert — Add an insert operation to the bulk ...
説明 public MongoDB\Driver\BulkWrite::insert ( array | object $document ): mixed A ...
dds an insert operation to the MongoDB\Driver\BulkWrite . パラメータ document ( array | object ) A do ...
-
https://man.plustar.jp/php/mongodb-driver-bulkwrite.insert.html
- [similar]
- Returns the number of documents deleted 9088
- « MongoDB\Driver\WriteResult MongoDB\Driver\WriteResult::getInsertedCount » PHP Manual MongoDB\D
...
<?php $manager = new MongoDB \ Driver \ Manager ; $bulk = new MongoDB \ Driver \ BulkWrite ; $bulk -> inse ...
rt ([ 'x' => 1 ]); $bulk -> update ([ 'x' => 1 ], [ '$set' => [ 'y' => 3 ]] ...
); $bulk -> update ([ 'x' => 2 ], [ '$set' => [ 'y' => 1 ]] ...
, [ 'upsert' => true ]); $bulk -> update ([ 'x' => 3 ], [ '$set' => [ 'y' => 2 ]] ...
-
https://man.plustar.jp/php/mongodb-driver-writeresult.getdeletedcount.html
- [similar]
- Returns the number of documents inserted (excluding upserts) 9042
- « MongoDB\Driver\WriteResult::getDeletedCount MongoDB\Driver\WriteResult::getMatchedCount » PHP
...
<?php $manager = new MongoDB \ Driver \ Manager ; $bulk = new MongoDB \ Driver \ BulkWrite ; $bulk -> inse ...
rt ([ 'x' => 1 ]); $bulk -> update ([ 'x' => 1 ], [ '$set' => [ 'y' => 3 ]] ...
); $bulk -> update ([ 'x' => 2 ], [ '$set' => [ 'y' => 1 ]] ...
, [ 'upsert' => true ]); $bulk -> update ([ 'x' => 3 ], [ '$set' => [ 'y' => 2 ]] ...
-
https://man.plustar.jp/php/mongodb-driver-writeresult.getinsertedcount.html
- [similar]
- Returns the number of documents inserted by an upsert 9042
- « MongoDB\Driver\WriteResult::getServer MongoDB\Driver\WriteResult::getUpsertedIds » PHP Manual
...
<?php $manager = new MongoDB \ Driver \ Manager ; $bulk = new MongoDB \ Driver \ BulkWrite ; $bulk -> inse ...
rt ([ 'x' => 1 ]); $bulk -> update ([ 'x' => 1 ], [ '$set' => [ 'y' => 3 ]] ...
); $bulk -> update ([ 'x' => 2 ], [ '$set' => [ 'y' => 1 ]] ...
, [ 'upsert' => true ]); $bulk -> update ([ 'x' => 3 ], [ '$set' => [ 'y' => 2 ]] ...
-
https://man.plustar.jp/php/mongodb-driver-writeresult.getupsertedcount.html
- [similar]
- Returns the number of documents selected for update 8887
- « MongoDB\Driver\WriteResult::getInsertedCount MongoDB\Driver\WriteResult::getModifiedCount » PH
...
<?php $manager = new MongoDB \ Driver \ Manager ; $bulk = new MongoDB \ Driver \ BulkWrite ; $bulk -> inse ...
rt ([ 'x' => 1 ]); $bulk -> update ([ 'x' => 1 ], [ '$set' => [ 'y' => 3 ]] ...
); $bulk -> update ([ 'x' => 2 ], [ '$set' => [ 'y' => 1 ]] ...
, [ 'upsert' => true ]); $bulk -> update ([ 'x' => 3 ], [ '$set' => [ 'y' => 2 ]] ...
-
https://man.plustar.jp/php/mongodb-driver-writeresult.getmatchedcount.html
- [similar]
- Returns the number of existing documents updated 8748
- « MongoDB\Driver\WriteResult::getMatchedCount MongoDB\Driver\WriteResult::getServer » PHP Manual
...
<?php $manager = new MongoDB \ Driver \ Manager ; $bulk = new MongoDB \ Driver \ BulkWrite ; $bulk -> inse ...
rt ([ 'x' => 1 ]); $bulk -> update ([ 'x' => 1 ], [ '$set' => [ 'y' => 3 ]] ...
); $bulk -> update ([ 'x' => 2 ], [ '$set' => [ 'y' => 1 ]] ...
, [ 'upsert' => true ]); $bulk -> update ([ 'x' => 3 ], [ '$set' => [ 'y' => 2 ]] ...
-
https://man.plustar.jp/php/mongodb-driver-writeresult.getmodifiedcount.html
- [similar]