You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2010/12/23 19:10:43 UTC

[Solr Wiki] Update of "SolRuby" by MatthewSimoneau

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The "SolRuby" page has been changed by MatthewSimoneau.
The comment on this change is: Update list of libraries..
http://wiki.apache.org/solr/SolRuby?action=diff&rev1=19&rev2=20

--------------------------------------------------

  }}}
  
  
+ == Extensions ==
+ === Apache ===
+  * [[solr-ruby]]: Low-level access to Solr from Ruby.
- == Ruby on Rails ==
-  * [[http://acts_as_solr.railsfreaks.com/|acts_as_solr]]: A plugin to add full text search capabilities using Solr to ActiveRecord models.  [[http://www.quarkruby.com/2007/8/12/acts_as_solr-for-search-and-faceting/|nice acts_as_solr tutorial]]
- 
-  * [[http://rubyforge.org/projects/background-solr/|acts_as_background_solr]]: An extension to acts_as_solr moving more processing to the background.
- 
   * [[Flare]]: A plugin adding faceted browsing, AJAX suggest and more to Rails controllers.
  
+ === Elsewhere ===
+  * [[http://github.com/avvo/delsolr/tree/master|delsolr]]: A Solr wrapper designed to simplify facet and filter queries.
+  * [[http://github.com/mwmitchell/rsolr/tree/master|rsolr]]: A lightweight, general purpose client library for Solr.
+  * [[http://github.com/outoftime/sunspot/tree/master|sunspot]]: A nice DSL framework for integrating Solr into your models.
+ 
+ === Inactive ===
+  * [[http://acts_as_solr.railsfreaks.com/|acts_as_solr]]: A plugin to add full text search capabilities using Solr to ActiveRecord models.  [[http://www.quarkruby.com/2007/8/12/acts_as_solr-for-search-and-faceting/|nice acts_as_solr tutorial]]
+  * [[http://rubyforge.org/projects/background-solr/|acts_as_background_solr]]: An extension to acts_as_solr moving more processing to the background.
   * [[http://mojodna.net/searchable/ruby/|Searchable]]: A Rails plugin that provides search integration with ActiveRecord. (an alternative to acts_as_solr)
  
-  * [[http://github.com/avvo/delsolr/tree/master|delsolr]]: A Solr wrapper designed to simplify facet and filter queries.
-  
-  * [[http://github.com/mwmitchell/rsolr/tree/master|rsolr]]: A lightweight, general purpose client library for Solr.
-  
-  * [[http://github.com/outoftime/sunspot/tree/master|sunspot]]: A nice DSL framework for integrating Solr into your models.
- 
- ----
- Searchable example:
- {{{
-     class SomeModel
-         include Searchable
-         index_attr :name, :boost => 2.0
-         index_attr :children do |attr|
-             attr.name :child
-             attr.include :name
-         end
-     end
- }}}
- 
- Now, to index:
- 
- {{{
-     SomeModel.add_to_index # (happens automatically on save/update/destroy)
- }}}
- 
- And to search:
- 
- {{{
-     SomeModel.search("year:1865", :offset => 0, :limit 20)
- }}}
  ----
  CategoryQueryResponseWriter