Gem Version Build Status

Installation

Mongo Mapper

Put the following in your Gemfile:

gem 'mongo_mapper'
gem 'sunspot_mongo'

Then run:

rails g mongo_mapper:config
rails g sunspot_rails:install
rake sunspot:solr:start

Mongoid

gem 'mongoid'
gem 'sunspot_mongo'

Then run:

rails g mongoid:config
rails g sunspot_rails:install
rake sunspot:solr:start

Upgrading

When upgrading to a new version, don't forget to check UPGRADING for notes about breaking changes.

Usage

Add the following to your model (assuming you have a string field named "content"):

include Sunspot::Mongo
searchable do
  text :content
end

Then search like usual:

search = Article.search do
  fulltext "something interesting"
end
search.results

Note: Mongoid adds Article.search, use Article.solr_search instead.

Reindexing Objects

If you are using Rails, objects are automatically indexed to Solr as a part of the save callbacks.

If you make a change to the object's "schema" (code in the searchable block), you must reindex all objects so the changes are reflected in Solr. Run:

bundle exec rake sunspot:reindex

More info

See the Sunspot documentation.

Credit

Based on sunspot_mongoid by jugyo. Originally developed by balexand.