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?

link|improve this question
I did find meta_search, which is like searchlogic and uses scopes to formulate the search results. Still interested in full text stuff though. You can check out meta_search here: github.com/ernie/meta_search – shiftshane May 10 '10 at 4:46
1  
It's like a year later now, but thanks for the suggestions! Ended up going with Thinking Sphinx as it was updated for Rails 3 about a month after posting the original question. – shiftshane May 3 '11 at 17:37
feedback

8 Answers

up vote 3 down vote accepted

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.

link|improve this answer
feedback

Check out Sunspot for Solr

http://github.com/outoftime/sunspot

link|improve this answer
There is also a screencast on it at RailsCasts. – istvanp Oct 4 '11 at 7:44
Solr is the "industrial-strength" solution. It can handle millions of indexed documents, and has countless configuration points. With all that, though, comes some degree of complexity. – Jonathan Julian Oct 23 '11 at 15:14
feedback

This question is old, but since there is no Accepted..

I would go for Thinking Sphinxs, since it is well known and acceted by Rails 3 by now.

link|improve this answer
feedback

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

Cheers

link|improve this answer
1  
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 Sep 7 '10 at 13:11
But now it isn't stable version. You can use 'or_conditions' branch for creating queries like 'MyModel.title_or_text_like(text)'.\ – oivoodoo Jul 3 '11 at 12:59
feedback

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...

link|improve this answer
feedback

https://indextank.com/documentation/ruby-client

link|improve this answer
indexTank rocks! – Omnipresent May 9 '11 at 17:03
feedback

I have branched and modified acts_as_ferret to pretty much work with rails 3 (ruby 1.8 and 1.9): https://github.com/brightchimp/acts_as_ferret

3 tests still fail so I suggest running them to see it they will affect your app (more like this, sorting, and pagination (as a result of sorting fail).

I have an outstanding pull request to merge the changes back into the original. In the meantime you can use my branch by specifying the git repo in your gem file:

gem 'acts_as_ferret', :git => 'git://github.com/brightchimp/acts_as_ferret.git'

The acts_as_ferret gem seemed to fall out of favour a while ago but I still use it. I'm not sure why, but it's worth considering whether it's the best option for any new apps.

link|improve this answer
feedback

For a solution without external dependencies, you can try https://github.com/dougal/acts_as_indexed

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.