views:

862

answers:

4

I was wondering if there were any suggestions for how to best roll with full text searching in your Rails 3 apps? Thinking Sphinx and acts_as_ferret aren't updated for Rails 3 yet, and even basic activerecord search helpers like Searchlogic also aren't there yet.

Any thoughts? Are you using any forked versions of the above gems that have been updated to Rails 3?

+3  A: 

Check out Sunspot for Solr

http://github.com/outoftime/sunspot

Christos
A: 

Searchlogic was updated to work with Rails3, you can find the new version here: http://github.com/railsdog/searchlogic

Cheers

sNiCKY
Oops sorry. git://github.com/binarylogic/searchlogic.git is an old version. You need to install plugin from here git://github.com/railsdog/searchlogic.git
sNiCKY
A: 

Thinking Sphinx (ver. 2.x) should work with Rails 3 (http://freelancing-god.github.com/ts/en/rails3.html) and there is a Rails 3 branch in the official repository.

I'm just starting to use thinking sphinx in a Rails 3 project, and so far it seems to work fine for basic searching, although I'm having some challenges with acts_as_taggable_on.

Gnomet
+1  A: 

Hi shiftshane

http://github.com/kannanr/acts_as_solr_reloaded

I've modified the code a bit to work with Rails 3... .

Let me know if it works/not...

KannanR