您好,我正在尝试在我的项目中使用轮胎和弹性搜索。
我能够索引模型并查询它们中的每一个,但我在连接表时遇到了困难。
我的模特
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(属于该项目的那些帖子)?