我有以下查询:
var q = models.Post.find({published: true}).sort({'date': -1}).limit(20);
q.exec(function(err, posts) {
// `posts` will be of length 20
});
posts
的总量让我们说〜200,我想将结果限制为20并按日期排序,但也要从指定的索引返回,即50
索引当前未作为模型中的键存储,非常感谢通过查询设置索引的解决方案。
由于
修改
解决方案:
Model.find({published: true}, fields, {skip: 10, limit: 10}).sort({'date': -1});