Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在努力在 EC2 上设置 MongoDB 副本集。我想配置自动分片,以便我的节点可以轻松上下。
是否可以使用原生 PHP 驱动程序来触发分片和添加/删除节点?如果是这样,怎么做?
假设您的连接mongos正确,您可以使用MongoDB::command()方法:
mongos
$mongo->selectDB('admin')->command(array('addshard'=>'hostname:port'));