3

我试图限制从 mongoid 查询返回的不同结果的数量。

Place.where({:tags.in => ["food"]}).distinct(:name).limit(2)

但这会引发以下错误:

NoMethodError: undefined method 'limit' for ["p1", "p2", "p3", "p4"]:Array

如何在 mongoid 查询中设置限制,而不是获取整个结果集,然后从数组中选择有限数量的项目。

谢谢

4

1 回答 1

7

MongoDB 中的 distinct 是一个命令,并且命令不返回游标。只有游标支持 limit() 而命令结果不支持,就像这里不支持 sort() 一样,我认为 sort 很重要,可以先运行,否则你永远不知道你得到了哪个“前两个”不同的项目

有一种解决方法,但使用聚合框架。在普通的 MongoDB 查询中(正如您在 MongoDB shell 上使用的那样),您将使用:

db.places.aggregate( [
    { $match: { 'tags' : { $in: [ 'food' ] } } },
    { $group: { '_id': '$name' } },
    { $sort: { 'name': 1 } },
    { $limit: 2 },
] );

在 Mongoid 中,我怀疑您可以将第一行更改为:

Place.collection.aggregate( [
于 2013-07-10T10:26:42.053 回答