We've recently decided to implement search with elasticsearch. Using Ruby on Rails we went with Tire.
Considering that elasticsearch index is the equivalent of a database in a relational DB, why does Tire uses different indexes for each ActiveRecord model? Isn't that's the "_type" attribute purpose?
index_name
anddocument_type
methods and store everything in one index just fine. – karmi