我用 $hint 命令坚持使用 Mongo。我有收藏,我已经索引了这个收藏。但问题是,我使用聚合框架查询集合,但我想暂时禁用索引,所以我使用如下提示命令:
db.runCommand(
{aggregate:"MyCollectionName",
pipeline:[{$match : {...somthing...},
{$project : {...somthing...}}]
},
{$hint:{$natural:1}}
)
请注意,我使用{$hint:{$natural:1}}
禁用此查询的索引,我已在 MongoDB 命令行上成功运行此命令。但我不知道如何将此命令映射到 Mongo Java Api (Java Code)。
我使用了 lib mongo-2.10.1.jar