PHP Doku:: Sets whether this query can be done on a slave - mongocursor.slaveokay.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenMongoDB Native DriverCore ClassesThe MongoCursor classMongoCursor::slaveOkay

Ein Service von Reinhard Neidl - Webprogrammierung.

The MongoCursor class

<<MongoCursor::skip

MongoCursor::snapshot>>

MongoCursor::slaveOkay

(PECL mongo >=0.9.4)

MongoCursor::slaveOkaySets whether this query can be done on a slave

Beschreibung

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

This method will override the static class variable slaveOkay.

Parameter-Liste

okay

If it is okay to query the slave.

Rückgabewerte

Returns this cursor.

Fehler/Exceptions

Throws MongoCursorException if this cursor has started iterating.

Beispiele

Beispiel #1 MongoCursor::slaveOkay() example

<?php

MongoCursor
::$slaveOkay false;

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

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

MongoCursor::$slaveOkay true;

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

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

?>

Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)