4

関連付けがあるモデルにインデックスを付けようとしていますhas_many, :throughが、結果が表示されません。

class Business < ActiveRecord::Base
  include Tire::Model::Search
  include Tire::Model::Callbacks

  def self.search(params)
    tire.search(load: true) do
      query { string params[:q]} if params[:q].present?
    end
  end

  mapping do
    indexes :service_name
    indexes :service_description
    indexes :latitude
    indexes :longitude
    indexes :services do
      indexes :service
      indexes :description
    end
  end

  def to_indexed_json #returns json data that should index (the model that should be searched)
    to_json(methods: [:service_name, :service_description], include: { services: [:service, :description]})
  end

  def service_name
    services.map(&:service)
  end

  def service_description
    services.map(&:description)
  end

  has_many :professionals
  has_many :services, :through => :professionals

end

次に、これはサービスモデルです

class Service < ActiveRecord::Base
  attr_accessible :service, :user_id, :description
  belongs_to :professional
  belongs_to :servicable, polymorphic: true
end

これを使用して再インデックスも行いました:

rake environment tire:import CLASS=Business FORCE=true

ビジネスでは商品を検索できますが、サービスで何かを検索しようとすると、空の結果が返されます。

4

3 に答える 3

5

マッピングに苦労した後、検索を少し簡単にするgemを作成しました。https://github.com/ankane/searchkick

search_dataこれを行うには、次のメソッドを使用できます。

class Business < ActiveRecord::Base
  searchkick

  def search_data
    {
      service_name: services.map(&:name),
      service_description: services.map(&:description)
    }
  end
end
于 2013-11-03T08:48:08.700 に答える
3

I do not believe there is a way to do mapping on associations with Tire. What you will want to do instead is define easily searchable fields with the :as method and a proc. This way you can also get rid of the to_indexed_json method (you will actually need to)

mapping do
  indexes :service_name
  indexes :service_description
  indexes :latitude
  indexes :longitude    
  indexes :service_name, type: 'string', :as => proc{service_name}
  indexes :service_description, type: 'string', :as => proc{service_description}
end
于 2013-11-01T15:16:13.203 に答える
0

Tire はアソシエーションに関連付けることができます。私はこれを使用して has_many アソシエーションのインデックスを作成しましたが、has_many, :through はまだ試していません。オブジェクトのインデックスを試しますか?

mapping do
  indexes :service_name
  indexes :service_description
  indexes :latitude
  indexes :longitude
  indexes :services, type: 'object',
    properties: {
      service: {type: 'string'}
      description: {type: 'string'}
    }
end

また、 touch メソッドがあると良いかもしれません:

class Service < ActiveRecord::Base
  attr_accessible :service, :user_id, :description
  belongs_to :professional, touch: true
  belongs_to :servicable, polymorphic: true
end

インデックスを更新するための after_touch コールバック。

于 2013-11-08T00:25:25.747 に答える