标签: mongodb indexing mongoose mongodb-query
Mongodb doc说$where进行了一次集合扫描,这很糟糕,但如果我在查询中添加一个索引字段,是否会利用索引速度?
$where
db.users.find({ _id: someMongodbId, $where: function() { return this.name == 'joe' } // ensure this doc has name "joe" });
在上面的例子中,由于_id字段只有1个查询,对吧?
_id