I'm using Rails with the Tire gem (for ElasticSearch) and I need to search across multiple models. Something like:
# title is a field in all models
Tire.search :tasks, :projects, :posts, { :title => "word" }
I know I can search models one by one and then handle these results, but that should be unecessary considering ElasticSearch(Lucene) is document oriented.
Any thoughts?
Thanks,
Tire.searchmethod — as in your example — you can indeed search in more than one index. The thing is, the records are then wrapped in aTire::Results::Itemclass, not in you model class. But this is the behaviour I'm gravitating to anyway — wrap results in this fre-form class, and then provide a way to load the "real model". See issues github.com/karmi/tire/issues/11 and github.com/karmi/tire/issues/12. – karmi Jul 4 '11 at 19:02Tire.search {...}but it didn't had support, at least on version 0.1.13, which is the one we are currently using. I'll update my gem version ASAP. Anyway, searching in the same index while usingtypefor filtering (if needed) is working pretty good in our case. Thanks for your response. – Carlos Eduardo da Fonseca Jul 25 '11 at 22:46