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


PHP MongoClient::getConnections方法代碼示例

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


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

示例1: disconnect

 /**
  * Forcefully closes a connection to the database,
  * even if persistent connections are being used.
  *
  * [!!] This is called automatically by [\Gleez\Mango\Client::__destruct].
  */
 public function disconnect()
 {
     if ($this->isConnected()) {
         $connections = $this->connection->getConnections();
         foreach ($connections as $connection) {
             // Close the connection to Mongo
             $this->connection->close($connection['hash']);
         }
         $this->db = $this->benchmark = null;
         $this->connected = false;
     }
 }
開發者ID:ultimateprogramer,項目名稱:cms,代碼行數:18,代碼來源:Client.php

示例2: getConnections

 /**
  * Get list of all active connections through this client
  * 
  * @return type
  */
 public function getConnections()
 {
     return $this->mongoClient->getConnections();
 }
開發者ID:paulocarvalhodesign,項目名稱:php-mongo,代碼行數:9,代碼來源:Client.php

示例3: MongoClient

<?php

$mongoClient = new MongoClient("mongodb://whisky:13000/?replicaset=seta");
$connections = $mongoClient->getConnections();
foreach ($connections as $con) {
    if ($con['connection']['connection_type_desc'] == "SECONDARY") {
        echo "Closing '{$con['hash']}':";
        $a->close($con['hash']);
    }
}
$mongoClient->selectDB("foo");
$mongoClient->getHosts();
$m->setReadPreference(MongoClient::RP_SECONDARY, array(array('dc' => 'east', 'use' => 'reporting'), array('dc' => 'west'), array()));
var_dump($m->getReadPreference());
$cursor = $collections->find();
$result = $cursor->next();
$info = $cursor->info();
MongoClient::killCursor($info['server'], $info['id']);
var_dump($mongoClient->listDBs());
$c1 = $m->selectCollection("foo", "bar.baz");
$c2 = $m->selectDB("foo")->selectCollection("bar.baz");
var_dump(MongoClient::_toString);
開發者ID:isS,項目名稱:NoSQL,代碼行數:22,代碼來源:mongo-core.php


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