指数1:
{ A: 1 }
指标二:
{ B: 1 }
查询:
db.col.aggregate([ { $match: { $or: [ A: { $eq: 100 }, B: { $eq: 100 }, ] } } ])
mongodb会在这个查询中同时使用这两个索引吗?
gev0vcfq1#
根据文件:https://www.mongodb.com/docs/manual/reference/operator/query/or/它将使用两个索引。
1条答案
按热度按时间gev0vcfq1#
根据文件:
https://www.mongodb.com/docs/manual/reference/operator/query/or/
它将使用两个索引。