MongoDB\Driver\ReadPreference::getTagSets

(mongodb >=1.0.0)

MongoDB\Driver\ReadPreference::getTagSetsReturns the ReadPreference's "tagSets" option

说明

final public MongoDB\Driver\ReadPreference::getTagSets ( void ) : array

参数

此函数没有参数。

返回值

Returns the ReadPreference's "tagSets" option.

错误/异常

范例

Example #1 MongoDB\Driver\ReadPreference::getTagSets() example

<?php

$mode 
MongoDB\Driver\ReadPreference::RP_SECONDARY_PREFERRED;

/* Null and an empty array both denote no tag set preference. */
$rp = new MongoDB\Driver\ReadPreference($modenull);
var_dump($rp->getTagSets());

$rp = new MongoDB\Driver\ReadPreference($mode, []);
var_dump($rp->getTagSets());

/* Prefer a node in New York, but fall back to any available node. */
$rp = new MongoDB\Driver\ReadPreference($mode, [['dc' => 'ny']]);
var_dump($rp->getTagSets());

/* Prefer a node in the New York, followed by a node in San Francisco that is
   labeled for reporting usage, and finally fall back to any available node. */
$rp = new MongoDB\Driver\ReadPreference($mode, [
  [
'dc' => 'ny'],
  [
'dc' => 'sf''use' => 'reporting'],
  [],
]);
var_dump($rp->getTagSets());

?>

以上例程会输出:

array(0) {
}
array(0) {
}
array(2) {
  [0]=>
  array(1) {
    ["dc"]=>
    string(2) "ny"
  }
  [1]=>
  array(0) {
  }
}
array(3) {
  [0]=>
  array(1) {
    ["dc"]=>
    string(2) "ny"
  }
  [1]=>
  array(2) {
    ["dc"]=>
    string(2) "sf"
    ["use"]=>
    string(9) "reporting"
  }
  [2]=>
  array(0) {
  }
}
相关文章
php mongodb driver cursor returns the id for this cursorphp mongodb driver cursor returns the server associated with this cursorphp mongodb driver monitoring commandstartedevent returns the server on which the command was executedphp mongodb driver monitoring commandsucceededevent returns the command namephp mongodb driver readconcern returns the readconcern s level optionphp mongodb driver readpreference returns an object for bson serializationphp mongodb driver readpreference create a new readpreferencephp mongodb driver readpreference returns the readpreference s maxstalenessseconds optionphp mongodb driver readpreference returns the readpreference s mode optionphp mongodb driver readpreference returns the readpreference s tagsets optionphp mongodb driver exception runtimeexception returns whether an error label is associated with an exceptionphp mongodb driver server returns an array of tags describing this server in a replica setphp mongodb driver server returns an integer denoting the type of this serverphp mongodb driver writeconcern returns the writeconcern s journal optionphp mongodb driver writeconcern returns the writeconcern s w optionphp mongodb driver writeconcern returns the writeconcern s wtimeout optionphp mongodb driver writeerror returns the writeerror s error codephp mongodb driver writeerror returns the index of the write operation corresponding to this writeerrorphp mongodb driver writeerror returns additional metadata for the writeerrorphp mongodb driver writeerror returns the writeerror s error message
关注编程学问公众号