在 mongo 中,创建索引时,我试图确定以下查询是否会在 a) category_ids 和 status 或 b) category_ids、status 和 name 上有一个索引?
Source.where(category_ids: [1,2,3], status: Status::ACTIVE).order_by(:name) # ((Ruby/Mongoid code))
本质上,我想弄清楚索引是否应该包含 ORDER_BY 列?还是只有 WHERE 子句?我在哪里可以阅读更多关于此的信息?