Php/docs/mongoclient.setreadpreference

来自菜鸟教程
跳转至:导航、​搜索

MongoClient::setReadPreference

(PECL mongo >=1.3.0)

MongoClient::setReadPreference为该连接设置读取选项


This extension that defines this method is deprecated. Instead, the MongoDB extension should be used. There is no equivalent for this method in the new extension.


说明

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

参数

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 MongoClient::setReadPreference() 标签集数组语法的例子

<?php$m = new MongoClient();// 首选最近的 "east" 数据中心的服务器,也用于报告,// 失败时调用 "west" 数据中心的服务器$m->setReadPreference(MongoClient::RP_NEAREST, array(    array('dc' => 'east', 'use' => 'reporting'),    array('dc' => 'west'),));?>

参见