I am using Elastic Search and Tire in searching.
I created Search class for searching across all my models.
class Link < ActiveRecord::Base
...
tire.mapping do
indexes :id, :type => 'string', :index => :not_analyzed
indexes :app_id, :type => 'string', :index => :not_analyzed
indexes :title, analyzer: 'snowball', boost: 100
end
def to_indexed_json
to_json(
only: [:id, :app_id, :title]
)
end
end
class Search
def results
search = Tire.search [:questions, :answers, :links, :events] do
query { string "#{term}" }
end
search.results
end
end
The case is to return only items from Apps 12
and 13
.
So i tried to filter all results using search.filter :and, must: {term: {app_id: [12, 13]}}
but only questions
, links
and answers
have app_id
attribute. And I would like also return all events
.
How will be good patern to do that?
EDIT: For now something like below works for me:
multi_search = Tire.multi_search do
search :without_app, indices: [:events, :past_events, :reviews] do
query { match :_all, "#{term}" }
end
search :with_app, indices: [:questions, :answers, :links, :service_providers] do
query do
filtered do
query { match :_all, "#{term}" }
filter :terms, app_id: app_ids
end
end
end
end
multi_search.results[:with_app].to_a + multi_search.results[:without_app].to_a