當前位置: 首頁>>代碼示例>>PHP>>正文


PHP MongoCursor::setReadPreference方法代碼示例

本文整理匯總了PHP中MongoCursor::setReadPreference方法的典型用法代碼示例。如果您正苦於以下問題:PHP MongoCursor::setReadPreference方法的具體用法?PHP MongoCursor::setReadPreference怎麽用?PHP MongoCursor::setReadPreference使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在MongoCursor的用法示例。


在下文中一共展示了MongoCursor::setReadPreference方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: setMongoCursorSlaveOkay

 /**
  * Set whether secondary read queries are allowed for this cursor.
  *
  * This method wraps setSlaveOkay() for driver versions before 1.3.0. For
  * newer drivers, this method either wraps setReadPreference() method and
  * specifies SECONDARY_PREFERRED or does nothing, depending on whether
  * setReadPreference() exists.
  *
  * @param boolean $ok
  */
 public function setMongoCursorSlaveOkay($ok)
 {
     if ($ok) {
         // Preserve existing tags for non-primary read preferences
         $readPref = $this->mongoCursor->getReadPreference();
         $this->mongoCursor->setReadPreference(\MongoClient::RP_SECONDARY_PREFERRED, isset($readPref['tagsets']) ? $readPref['tagsets'] : []);
     } else {
         $this->mongoCursor->setReadPreference(\MongoClient::RP_PRIMARY);
     }
 }
開發者ID:malukenho,項目名稱:mongodb,代碼行數:20,代碼來源:Cursor.php

示例2: setMongoCursorSlaveOkay

 /**
  * Set whether secondary read queries are allowed for this cursor.
  *
  * This method wraps setSlaveOkay() for driver versions before 1.3.0. For
  * newer drivers, this method either wraps setReadPreference() method and
  * specifies SECONDARY_PREFERRED or does nothing, depending on whether
  * setReadPreference() exists.
  *
  * @param boolean $ok
  */
 public function setMongoCursorSlaveOkay($ok)
 {
     if (version_compare(phpversion('mongo'), '1.3.0', '<')) {
         $this->mongoCursor->slaveOkay($ok);
         return;
     }
     /* MongoCursor::setReadPreference() may not exist until 1.4.0. Although
      * we could throw an exception here, it's more user-friendly to NOP.
      */
     if (!method_exists($this->mongoCursor, 'setReadPreference')) {
         return;
     }
     if ($ok) {
         // Preserve existing tags for non-primary read preferences
         $readPref = $this->mongoCursor->getReadPreference();
         $tags = !empty($readPref['tagsets']) ? ReadPreference::convertTagSets($readPref['tagsets']) : array();
         $this->mongoCursor->setReadPreference(\MongoClient::RP_SECONDARY_PREFERRED, $tags);
     } else {
         $this->mongoCursor->setReadPreference(\MongoClient::RP_PRIMARY);
     }
 }
開發者ID:ne0h12,項目名稱:mongodb,代碼行數:31,代碼來源:Cursor.php

示例3: getCursor

 /**
  *
  * @return \MongoCursor
  */
 private function getCursor()
 {
     if ($this->cursor) {
         return $this->cursor;
     }
     $this->cursor = $this->collection->getMongoCollection()->find($this->expression->toArray(), $this->fields);
     if ($this->skip) {
         $this->cursor->skip($this->skip);
     }
     if ($this->limit) {
         $this->cursor->limit($this->limit);
     }
     if ($this->options['batchSize']) {
         $this->cursor->batchSize($this->options['batchSize']);
     }
     if ($this->options['clientTimeout']) {
         $this->cursor->timeout($this->options['clientTimeout']);
     }
     if ($this->options['serverTimeout']) {
         $this->cursor->maxTimeMS($this->options['clientTimeout']);
     }
     if ($this->sort) {
         $this->cursor->sort($this->sort);
     }
     if ($this->hint) {
         $this->cursor->hint($this->hint);
     }
     // log request
     if ($this->client->hasLogger()) {
         $this->client->getLogger()->debug(get_called_class() . ': ' . json_encode(array('collection' => $this->collection->getName(), 'query' => $this->expression->toArray(), 'project' => $this->fields, 'sort' => $this->sort)));
     }
     $this->cursor->rewind();
     // define read preferences
     if ($this->readPreference) {
         $this->cursor->setReadPreference($this->readPreference['type'], $this->readPreference['tagsets']);
     }
     return $this->cursor;
 }
開發者ID:paulocarvalhodesign,項目名稱:php-mongo,代碼行數:42,代碼來源:Cursor.php

示例4: find

 /**
  * Querys this collection
  *
  * @link http://www.php.net/manual/en/mongocollection.find.php
  * @param array $query The fields for which to search.
  * @param array $fields Fields of the results to return.
  * @return MongoCursor
  */
 public function find(array $query = [], array $fields = [])
 {
     $cursor = new MongoCursor($this->db->getConnection(), (string) $this, $query, $fields);
     $cursor->setReadPreference($this->getReadPreference());
     return $cursor;
 }
開發者ID:icatholic,項目名稱:mongo-php-adapter,代碼行數:14,代碼來源:MongoCollection.php


注:本文中的MongoCursor::setReadPreference方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。