菜鸟请教个mongo查询语句的问题
这里 https://github.com/cnodejs/egg-cnode/blob/master/app/service/message.js#L101 的查询条件是
const query = { master_id: userId, _id: { $in: ids } }
这样查询效率更高吗, 改成这样有差别吗,_id应该是索引吧,效率不是很高吗?
const query = { _id: { $in: ids } }