On top of this new framework, new functionality is also implemented to provide read preference support that comes with MongoDB 2.2. The new framework no longer has the concept of a connection pool, but in 是 make sdb the conceptin connection /username.
文檔裡提到了connections_per_pool預設是unlimited,也就是每個連線池裡可以建立的連線數是不限制的。
可以用MongoPool::setSize來限制:http://php.net/manual/en/mongopool.se...
另外,Mongo 2.2+配合Mongo PECL擴充1.3+(beta)可以支援單一連線重複使用,建議關注。
UPDATE:
這意味著可以像nginx代理一樣保持固定數量的連接,就像“管道”,但連接池不等於管道。
MongoDB 2.0和1.2.x的ext-mongo的方案,不支援管道,並發的腳本是不會重用連接的,當某個腳本釋放了所使用的連接,另外一個腳本才可以從連接池中取用。