Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16104 программиста и 1771 робот. Сейчас ищут 1512 программистов ...
MongoCommandCursor::getReadPreference - Get the read preference for this command
Вернуться к: MongoCommandCursor
MongoCommandCursor::getReadPreference
(PECL mongo >=1.6.0)
MongoCommandCursor::getReadPreference — Get the read preference for this command
Описание
public array MongoCommandCursor::getReadPreference
( void
)
Список параметров
У этой функции нет параметров.
Возвращаемые значения
Данная функция возвращает массив, описывающий режимы предпочтения чтения. Массив содержит следующие значения: type для строкового значения режима предпочтения чтения (соответствующий константам MongoClient) и tagsets, содержащее список всех критерий наборов тегов. Если наборы тегов не были указаны, то tagsets в массиве не будет.
Примеры
Пример #1 MongoCommandCursor::getReadPreference() return value example
<?php
$m = new MongoClient('mongodb://rs1.example.com:27017', array('replicaSet' => 'myReplSetName'));
$collection = $m->selectCollection('test', 'people');
// If a MongoCommandCursor is constructed directly, it will inherit the read
// preference of the MongoClient instance passed to its constructor; however,
// MongoCollection::aggregateCursor() will have the MongoCommandCursor inherit
// the collection's read preference.
$collection->setReadPreference(MongoClient::RP_SECONDARY);
$cursor = $collection->aggregateCursor( [
[ '$group' => [ '_id' => '$name', 'points' => [ '$sum' => '$points' ] ] ],
[ '$sort' => [ 'points' => -1 ] ],
] );
var_dump($cursor->getReadPreference());
?>
Результат выполнения данного примера:
array(1) { ["type"]=> string(9) "secondary" }
Смотрите также
- The read preferences documentation.
- MongoCommandCursor::setReadPreference() - Set the read preference for this command
- MongoCursorInterface::getReadPreference() - Get the read preference for this query
Вернуться к: MongoCommandCursor