ruby-on-rails – 如何使用rails和mongoid通过“count”关联来查找记录?

有了这些型号:
class Week
  has_many :proofs
end
class Proof
  belongs_to :week
end

我想做的事情如下:

Week.where(:proof.count.gt => 0)

仅查找具有多个证明的周数.

有一个答案似乎可以解决这个问题:

Can rails scopes filter on the number of associated classes for a given field

但是在这个例子中,由于ids与证明一起存储,因此在周中没有诸如proof_ids之类的属性.这不适用于例如:

Week.where(:proof_ids.gt => 0)

这个查询怎么可能?在概念上很简单,但我无法弄清楚如何用mongo或mongoid做到这一点.

同样,我想按照证明的数量排序,例如:

Week.desc(:proofs.size)

但这也行不通.

我确实意识到反缓存是我的两个具体问题的选项,但我也希望能够进行查询.

在此先感谢您的帮助.

解决方法

使用rails(并且没有counter_cache),您可以:
class Week < ActiveRecord::Base
  has_many :proofs

  def self.by_proofs_size
    sort_by { |week| week.proofs.size }
  end

  def self.with_at_least_n_proofs(n = 1)
    select { |week| week.proofs.size >= n }
  end
end

尽管每个操作都产生2个查询,但这远非理想.

使用范围(bug?)重复这对查询(=每次操作> 4次查询):

scope :with_at_least_n_proofs,-> (n = 1) { select { |w| w.proofs.size >= n } }
scope :by_proofs_size,-> { sort_by { |w| w.proofs.size } }

理想的可能是使用counter_cache

scope :with_at_least_n_proofs,-> (n = 1) { where('proofs_count >= ?',n) }
scope :by_proofs_size,-> { order(proofs_count: :desc) }

相关文章

以下代码导致我的问题: class Foo def initialize(n=0) @n = n end attr_accessor :n d...
这是我的spec文件,当为上下文添加测试“而不是可单独更新用户余额”时,我得到以下错误. require 's...
我有一个拦截器:DevelopmentMailInterceptor和一个启动拦截器的inititializer setup_mail.rb. 但我想将...
例如,如果我有YAML文件 en: questions: new: 'New Question' other: recent: ...
我听说在RSpec中避免它,let,let !,指定,之前和主题是最佳做法. 关于让,让!之前,如果不使用这些,我该如...
我在Rails中使用MongoDB和mongo_mapper gem,项目足够大.有什么办法可以将数据从Mongoid迁移到 Postgres...