(PECL mongo >= 1.5.0)
MongoWriteBatch::__construct — Description
$collection
[, string $batch_type
[, array $write_options
]] )Constructs a new MongoWriteBatch.
注意:
This is a protected constructor. Please use one of the classes inheriting MongoWriteBatch.
collection
バッチを実行する MongoCollection。確認付き書き込みのデフォルトは WriteConcern をコピーします。$write_options
で指定したり、MongoWriteBatch::execute() で指定したりすることもできます。
batch_type
One of:
write_options
書き込みオプションの配列。
キー | 値 |
---|---|
w (int|string) | WriteConcern の値 |
wtimeout (int) | レプリケーションを待つ時間の最大値 |
ordered | MongoDB にこのバッチを順番どおりに実行させるのか、あるいは並べ替えを許すのかを指定する。デフォルトは TRUE |
j (bool) | プライマリーへのジャーナリングを待つかどうか。これは非推奨なので、かわりに確認付き書き込みを使うこと |
fsync (bool) | プライマリーへの fsync を待つかどうか。これは非推奨なので、かわりに確認付き書き込みを使うこと |
A new MongoWriteBatch of type batch_type
.