A new version (0.6) of the acts_as_solr plugin has been released and the
new features are:
- Added basic faceted search functionality for indexing and searching:
Indexing:
class Electronic < ActiveRecord::Base
acts_as_solr :facets => [:category, :manufacturer]
end
Searching:
Electronic.find_with_facet “memory”, :facets => {:fields =>[:category]}
-
The repository has been changed for easy access, its now under
http://opensvn.csie.org/acts_as_solr -
Updated website with API documentation
(http://acts-as-solr.rubyforge.org) -
There’s a mailing list for the plugin now
(http://rubyforge.org/mailman/listinfo/acts-as-solr-talk)