Mongo::getPoolSize

(PECL mongo >=1.2.0)
Get pool size for connection pools
public static int Mongo::getPoolSize ( void )
Returns:

Returns the current pool size.

This feature has been DEPRECATED as of version 1.2.3. Relying on this feature is highly discouraged. Please use MongoPool::getSize() instead.

Changelog:
1.2.11

Emits E_DEPRECATED when used.

Examples:
Changing pool size

This returns the default pool size, sets a new pool size, then prints the new pool size and the pool debugging information. Note that changing the pool size only affects new connection pools, it does not change old ones.

<?php

$connection = new Mongo("host1");

// pool size is -1
echo "pool size is: ".Mongo::getPoolSize()."\n";

echo "setting pool size to 200\n";

Mongo::setPoolSize(200);

// pool size is 200
echo "pool size is: ".Mongo::getPoolSize()."\n";

$conn2 = new Mongo("host2");

// remaining for host1 is -2
// remaining for host2 is 199
var_dump(Mongo::poolDebug());

?>

See also:

Mongo::setPoolSize() -

Mongo::poolDebug() -

connection -

doc_php
2016-02-24 16:20:57
Comments
Leave a Comment

Please login to continue.