在PHP manual,它有這個例子:PHP Mongo問題列表:當replicaSet爲true時,_construct返回什麼?
<?php
// pass a comma-separated list of server names to the constructor
$m1 = new Mongo("mongodb://sf2.example.com,ny1.example.com", array("replicaSet" => true));
// you only need to pass a single seed, the driver will derive the full list and
// find the master from this seed
$m2 = new Mongo("mongodb://ny1.example.com", array("replicaSet" => true));
?>
- 然而,是什麼$ M1回來?
- 如果我想找出主人,並複製,以便主人將負責編寫,並且其中一個副本是讀取連接,我應該找出&我應該做的最好的方法是什麼?
- 我可以擁有不同於每個副本的永久值嗎?或者他們必須共享相同的連接通道?
'$ m1'是Mongo類創建的一個對象。它會返回對象本身。 – gunwin 2011-04-06 00:27:10