当前位置: 首页>>代码示例>>PHP>>正文


PHP Mongo::setReadPreference方法代码示例

本文整理汇总了PHP中Mongo::setReadPreference方法的典型用法代码示例。如果您正苦于以下问题:PHP Mongo::setReadPreference方法的具体用法?PHP Mongo::setReadPreference怎么用?PHP Mongo::setReadPreference使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Mongo的用法示例。


在下文中一共展示了Mongo::setReadPreference方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: connect

 /**
  * Connects to our database
  */
 public function connect()
 {
     // We don't need to throw useless exceptions here, the MongoDB PHP Driver has its own checks and error reporting
     // Yii will easily and effortlessly display the errors from the PHP driver, we should only catch its exceptions if
     // we wanna add our own custom messages on top which we don't, the errors are quite self explanatory
     if (version_compare(phpversion('mongo'), '1.3.0', '<')) {
         $this->_mongo = new Mongo($this->server, $this->options);
         $this->_mongo->connect();
         if ($this->setSlaveOkay) {
             $this->_mongo->setSlaveOkay($this->setSlaveOkay);
         }
     } else {
         $this->_mongo = new MongoClient($this->server, $this->options);
         if (is_array($this->RP)) {
             $const = $this->RP[0];
             $opts = $this->RP[1];
             if (!empty($opts)) {
                 // I do this due to a bug that exists in some PHP driver versions
                 $this->_mongo->setReadPreference(constant('MongoClient::' . $const), $opts);
             } else {
                 $this->_mongo->setReadPreference(constant('MongoClient::' . $const));
             }
         }
     }
 }
开发者ID:rubipikachu,项目名称:xoso-lechung,代码行数:28,代码来源:EMongoClient.php

示例2: setReadPreference

 public function setReadPreference($readPerference, $tags = array())
 {
     $this->_connection->setReadPreference($readPerference, $tags);
     return $this;
 }
开发者ID:aodto,项目名称:mongoqb,代码行数:5,代码来源:Builder.php


注:本文中的Mongo::setReadPreference方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。