This plugin adds full text search capabilities and many other nifty features from Apache's Solr to any Rails model. It was based on the first draft by Erik Hatcher.
The current stable release is v0.9 and was released on 06-18-2007.
Please refer to the CHANGE_LOG
- Java Runtime Environment(JRE) 1.5 aka 5.0 http://www.java.com/en/download/index.jsp
# Just include the line below to any of your ActiveRecord models:
acts_as_solr
# Or if you want, you can specify only the fields that should be indexed:
acts_as_solr :fields => [:name, :author]
# Then to find instances of your model, just do:
Model.find_by_solr(query) #query is a string representing your query
# Please see ActsAsSolr::ActsMethods for a complete info
Erik Hatcher: First draft
Thiago Jackiw: Current developer (tjackiw at gmail dot com)
Released under the MIT license.