MongoDB\Driver\WriteConcern::isDefault

(mongodb >=1.3.0)

MongoDB\Driver\WriteConcern::isDefaultChecks if this is the default write concern

说明

final public MongoDB\Driver\WriteConcern::isDefault ( void ) : bool

Returns whether this is the default write concern (i.e. no options are specified). This method is primarily intended to be used in conjunction with MongoDB\Driver\Manager::getWriteConcern() to determine whether the Manager has been constructed without any write concern options.

The driver will not include a default write concern in its write operations (e.g. MongoDB\Driver\Manager::executeBulkWrite()) in order to allow the server to apply its own default, which may have been » modified. Libraries that access the Manager's write concern to include it in their own write commands should use this method to ensure that default write concerns are left unset.

参数

此函数没有参数。

返回值

Returns TRUE if this is the default write concern and FALSE otherwise.

错误/异常

范例

Example #1 MongoDB\Driver\WriteConcern::isDefault() example

<?php

$wc 
= new MongoDB\Driver\WriteConcern(1);
var_dump($wc->isDefault());

$manager = new MongoDB\Driver\Manager('mongodb://127.0.0.1/?w=majority');
$wc $manager->getWriteConcern();
var_dump($wc->isDefault());

$manager = new MongoDB\Driver\Manager('mongodb://127.0.0.1/');
$wc $manager->getWriteConcern();
var_dump($wc->isDefault());

?>

以上例程会输出:

bool(false)
bool(false)
bool(true)

参见

相关文章
php mongodb driver the mongodb driver writeconcern classphp domnode checks if the specified namespaceuri is the default namespace or notphp mongodb driver bulkwrite count number of write operations in the bulkphp mongodb driver cursor checks if the cursor may have additional resultsphp mongodb driver manager execute one or more write operationsphp mongodb driver readconcern checks if this is the default read concernphp mongodb driver server execute one or more write operations on this serverphp mongodb driver server checks if this server is an arbiter member of a replica setphp mongodb driver server checks if this server is a hidden member of a replica setphp mongodb driver server checks if this server is a passive member of a replica setphp mongodb driver server checks if this server is a primary member of a replica setphp mongodb driver server checks if this server is a secondary member of a replica setphp mongodb driver writeconcern returns an object for bson serializationphp mongodb driver writeconcern create a new writeconcernphp mongodb driver writeconcern returns the writeconcern s journal optionphp mongodb driver writeconcern checks if this is the default write concernphp mongodb driver exception writeexception returns the writeresult for the failed write operationphp mongodb driver writeresult returns the server associated with this write resultphp mongodb driver writeresult returns any write concern error that occurredphp mongodb get the write concern for this database
关注编程学问公众号