In Java when using Hibernate Search for instance you bind JPA insertion, removal and update events to the search engine so that it automatically insert, updates and removes elements from the search engine index at the same time inserting, updating or removing it from the database. Is the same possible in Ruby and when using active record? Or do you manually have to register observers?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
There are at least three notable gems allowing you to integrate Elasticsearch with ActiveRecord, some (like Tire) shipping with callback hooks for ActiveRecord that will automatically add, update or destroy an elasticsearch record on the appropriate actions.
All of them are actively maintained and developed. |
|||
|
|
The Tire Rubygem comes with a robust ActiveModel/ActiveRecord integration. The best option to quickly start is to generate an example Rails application:
Also, the Railscasts episode gives a quick overview of the integration. Tire README and integration test suite have all the information. |
|||
|
|