如何让聚合框架与引用的文档一起使用?

时间:2013-09-14 17:31:45

标签: ruby-on-rails mongodb mongoid ruby-on-rails-4 aggregation-framework

我得到了以下文档结构:

个人资料has_many DailyProviders。 DailyProvider embeds_one朋友。好友有一个整数字段count

  • 注意DailyProvider embeds_ONE因为,我不打算存储一群朋友。只是每日整体计数。朋友被更多地用于“可读性”。

如何使用聚合框架返回按提供者和日期分组的所有计数的总和?

class Stat::Profile
  include Mongoid::Document
  has_many :daily_providers, class_name: 'Stat::DailyProvider'
  field :profile_id, type: Integer
end

class Stat::DailyProvider
  include Mongoid::Document

  belongs_to :profile, class_name: 'Stat::Profile'
  embeds_one :friends, class_name: 'Stat::DailyProvider::Friend', cascade_callbacks: true

  field :provider_name, type: String
  field :date, type: Integer, default: Time.zone.now.strftime('%Y%m%d').to_i

  validates :provider_name, uniqueness: true, presence: true, inclusion: { in: %w(facebook, linkedin) }
end

class Stat::DailyProvider::Friend
  include Mongoid::Document

  embedded_in :daily_provider, class_name: 'Stat::DailyProvider'

  field :count, type: Integer, default: 0
end

我试过了:

Stat::Profile.first.collection.aggregate(
  { '$unwind' => '$daily_providers' },
  { '$unwind' => '$daily_providers.friends' },
  {
    '$project' => {
      '_id' => 1,
      'daily_providers' => '$daily_providers'
    }
  },
  {
    '$group' => {
      '_id' => {
        'date' => '$daily_providers.date'
      },
      'count' => { '$sum' => '$daily_providers.friends.count' }
    }
  }
)

但我得到一个空的[]。聚合框架是否仅适用于嵌入在单个集合中的文档?或者它可以与参考文件一起使用吗?

1 个答案:

答案 0 :(得分:1)

MongoDB无法自动关注引用。 DBRef只是数据库驱动程序的约定。它们对MongoDB本身毫无意义。

MongoDB不执行JOIN - 期间。聚合框架一次只能使用一个集合。对于像MapReduce这样的大多数其他工具也是如此。当您需要进行JOIN时,需要在应用程序层执行此操作:查询第一个集合,检查结果,并根据它们查询第二个集合。

出于这个原因,MongoDB鼓励在父对象中嵌入文档而不是引用它们。