Mongo DB - 我应该为索引添加什么?

时间:2016-07-28 10:19:10

标签: node.js mongodb mongoose database

我的问题是.sort().select()

Item.find({title: searchRegExp}).lean().select('slug title poster').limit(50).sort('-_id')

我应该放入MongoDB索引:

  1. 查询字段{ title: 1 }
  2. 排序字段{ _id: -1 })
  3. 选择字段{ slug: 1, title: 1, poster: 1 }
  4. 或他们在一起? { title: 1, _id: -1, slug: 1, title: 1, poster: 1 }

0 个答案:

没有答案