class Product include Mongoid::Document include Mongoid::Search field :brand field :name field :attrs, :type => Array references_many :tags referenced_in :category embeds_many :subproducts search_in :brand, :name, :outlet, :attrs, :tags => :name, :category => :name, :subproducts => [:brand, :name] end