启用分片mongocxx

问题描述 投票:1回答:1

我想知道如何使用mongocxx 3.1.3(Mongo C ++驱动程序)执行这些命令:

sh.enableSharding("YourDB")
sh.shardCollection("YourDB.YourCollection", {field:hashed})

我已经搜索了3个小时,仍然没有找到方法。任何的想法?

c++ mongodb sharding mongo-cxx-driver
1个回答
1
投票

驱动程序不为此提供帮助程序,但您可以使用带有mongocxx::database::run_command手册中指定的参数的enableSharding command来调用服务器上的命令。

© www.soinside.com 2019 - 2024. All rights reserved.