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