本文整理汇总了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;
}
}
示例2: getConnections
/**
* Get list of all active connections through this client
*
* @return type
*/
public function getConnections()
{
return $this->mongoClient->getConnections();
}
示例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);