update : 2015.11.03
php.shukuma.com

검색:
 
 
Sets whether this query can be done on a secondary [deprecated]

MongoCursor::slaveOkay

(PECL mongo >=0.9.4)

MongoCursor::slaveOkaySets whether this query can be done on a secondary [deprecated]

설명

public MongoCursor MongoCursor::slaveOkay ([ bool $okay = true ] )
Warning

This method is deprecated since version 1.5.0. Instead, please use MongoCursor::setReadPreference() and Read Preferences.

Calling this will make the driver route reads to secondaries if:

  • You are using a replica set, and
  • You created a MongoClient instance using the option "replicaSet" => "setName", and
  • There is a healthy secondary that can be reached by the driver.
You can check which server was used for this query by calling MongoCursor::info() after running the query. It's server field will show which server the query was sent to.

Note that you should use this function even if you do not use the automatic routing to secondaries. If you connect directly to a secondary in a replica set, you still need to call this function, which basically tells the database that you are aware that you might be getting older data and you're okay with that. If you do not call this, you'll get "not master" errors when you try to query.

This method will override the static class variable MongoCursor::$slaveOkay. It will also override Mongo::setSlaveOkay(), MongoDB::setSlaveOkay() and MongoCollection::setSlaveOkay().

인수

okay

If it is okay to query the secondary.

반환값

Returns this cursor.

오류/예외

Throws MongoCursorException if this cursor has started iterating.

예제

Example #1 MongoCursor::slaveOkay() example

<?php

MongoCursor
::$slaveOkay false;

// cannot query secondary
$cursor $collection->find();

// can query secondary
$cursor $collection->find()->slaveOkay();

MongoCursor::$slaveOkay true;

// can query secondary
$cursor $collection->find();

// cannot query secondary
$cursor $collection->find()->slaveOkay(false);

?>

참고

변경점

버전 설명
1.5.0 This method has been deprecated in favour of MongoCursor::setReadPreference() and Read Preferences.