MongoCollection::setReadPreference

(PECL mongo >=1.3.0)

MongoCollection::setReadPreferenceSet the read preference for this collection

설명

public bool MongoCollection::setReadPreference ( string $read_preference [, array $tags ] )

인수

read_preference

The read preference mode: MongoClient::RP_PRIMARY, MongoClient::RP_PRIMARY_PREFERRED, MongoClient::RP_SECONDARY, MongoClient::RP_SECONDARY_PREFERRED, or MongoClient::RP_NEAREST.

tags

An array of zero or more tag sets, where each tag set is itself an array of criteria used to match tags on replica set members.

반환값

Returns TRUE on success, or FALSE otherwise.

오류/예외

Emits E_WARNING if either parameter is invalid, or if one or more tag sets are provided with the MongoClient::RP_PRIMARY read preference mode.

예제

Example #1 MongoCollection::setReadPreference() tag set array syntax example

<?php

$m 
= new MongoClient();
$c $m->test->users;

// Prefer the nearest server in the "east" data center also used for reporting,
// but fall back to a server in the "west" data center
$c->setReadPreference(MongoClient::RP_NEAREST, array(
    array(
'dc' => 'east''use' => 'reporting'),
    array(
'dc' => 'west'),
));
?>

참고

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top