ruby-on-rails – Mongoid随机文件

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Mongoid随机文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
让我说我有一个用户的集合.有没有办法使用mongoid在集合中找到n个不再返回相同用户的n个随机用户?现在让我们说用户集合如下所示:
class User
  include Mongoid::Document
  field :name
end

简单啊

谢谢

解决方法

最好的解决方案将取决于集合的预期大小.

对于小集合,只需要得到所有的和.shuffle.slice!

对于小尺寸的n,你可以得到这样的东西:

result = (0..User.count-1).sort_by{rand}.slice(0,n).collect! do |i| User.skip(i).first end

对于大尺寸的n,我建议创建一个“随机”列进行排序.详情请见:http://cookbook.mongodb.org/patterns/random-attribute/ https://github.com/mongodb/cookbook/blob/master/content/patterns/random-attribute.txt

原文链接:https://www.f2er.com/ruby/266149.html

猜你在找的Ruby相关文章