This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Thiago Jackiw (author)
Sat May 03 15:39:08 -0700 2008
| name | age | message | |
|---|---|---|---|
| |
CHANGE_LOG | Sat May 03 15:39:08 -0700 2008 | |
| |
LICENSE | Sat May 03 15:39:08 -0700 2008 | |
| |
README | ||
| |
Rakefile | Sat May 03 15:39:08 -0700 2008 | |
| |
TESTING_THE_PLUGIN | Sat May 03 15:39:08 -0700 2008 | |
| |
config/ | Sat May 03 15:39:08 -0700 2008 | |
| |
init.rb | Sat May 03 15:39:08 -0700 2008 | |
| |
install.rb | Sat May 03 15:39:08 -0700 2008 | |
| |
lib/ | Sat May 03 15:39:08 -0700 2008 | |
| |
schema.xml | Sat May 03 15:39:08 -0700 2008 | |
| |
solr/ | Sat May 03 15:39:08 -0700 2008 | |
| |
test/ | Sat May 03 15:39:08 -0700 2008 |
README
= acts_as_solr Rails plugin This plugin adds full text search capabilities and many other nifty features from Apache's Solr[http://lucene.apache.org/solr/] to any Rails model. It was based on the first draft by Erik Hatcher. == Current Release The current stable release is v0.9 and was released on 06-18-2007. == Changes Please refer to the CHANGE_LOG[link:files/CHANGE_LOG.html] == Installation === Requirements * Java Runtime Environment(JRE) 1.5 aka 5.0 (http://www.java.com/en/download/index.jsp) === Default On your Rails' root directory, just type script/plugin install svn://svn.railsfreaks.com/projects/acts_as_solr/trunk == Basic Usage 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 == Authors Erik Hatcher:: First draft Thiago Jackiw:: Current developer (tjackiw at gmail dot com) == Release Information Released under the MIT license. == More info http://acts-as-solr.railsfreaks.com http://acts_as_solr.railsfreaks.com








