0

您好,我正在尝试在我的项目中使用轮胎和弹性搜索。

我能够索引模型并查询它们中的每一个,但我在连接表时遇到了困难。

我的模特

class Item < ActiveRecord::Base
attr_accessible :category_id, :description, :name, :rating
belongs_to :category
has_and_belongs_to_many :posts
include Tire::Model::Search
include Tire::Model::Callbacks
after_save do
  update_index
end

tire.mapping do
  indexes :name,  :analyzer => 'snowball', :boost => 100
  indexes :posts
end
end



class Post < ActiveRecord::Base
include Tire::Model::Search
include Tire::Model::Callbacks
has_and_belongs_to_many :tags
has_and_belongs_to_many :items


attr_accessible :posted_at, :text, :thread_id, :username

tire.mapping do
  indexes :id, type: 'integer'
  indexes :text, :analyzer => 'snowball', :boost => 100
  indexes :thread_id, type: 'integer'
  indexes :posted_at, type: 'date'
end
end

如您所见,我在 Item 和 Post 之间有一个连接表

如果我有一个项目名称,我如何使用弹性搜索或 Item.search(name).posts 搜索 Post.search(属于该项目的那些帖子)?

4

1 回答 1

1

可能你能做的最好的就是从这里开始:

http://stackoverflow.com/questions/11692560/elasticsearch-tire-and-nested-queries-associations-with-activerecord/11711477#11711477

然后看http://railscasts.com/episodes/307-elasticsearch-part-2

然后从上到下浏览轮胎http://karmi.github.io/retire/

我正在解决类似的问题......会让你知道我如何解决这个问题:)

于 2013-10-21T13:35:11.527 回答