我想知道如何使用mongocxx 3.1.3(Mongo C ++驱动程序)执行这些命令:
sh.enableSharding("YourDB")
sh.shardCollection("YourDB.YourCollection", {field:hashed})
我已经搜索了3个小时,仍然没有找到方法。任何的想法?
驱动程序不为此提供帮助程序,但您可以使用带有mongocxx::database::run_command
手册中指定的参数的enableSharding command来调用服务器上的命令。