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.
我有一个包含数百万条记录的大型 MongoDB 数据库。我想检索具有关联索引的变量的所有值。有没有比遍历所有记录更快的方法来检索这个索引变量的所有值?
当您在 mongo 中编写查询时,它使用自己的查询分析器,它将使用查询的最佳索引。
为了考虑分析器将使用哪个索引.explain(),请在查询末尾添加。
.explain()