I have just watched the railscast about a simple search form http://railscasts.com/episodes/37-simple-search-form and I want to do something like that in my app, but I don't want to find just results that match perfect.

Like, I have a model named Project with: name, description, key-word1, key-word2.

Given the code taken from the railscast:

models/project.rb

def self.search(search)
  if search
    find(:all, :conditions => ['name LIKE ?', "%#{search}%"])
  else
    find(:all)
  end
end

If I want to make a search for "Pizza", and I have a project named "Master Pizza Project" with a keyword1 named "MasterPizza" and keyword2 named "Pizza", how would be the code for the project.rb to make this work? Also, case sensitive here would be a problem?

Thanks! :)

link|improve this question

57% accept rate
feedback

4 Answers

There is another railscast where Ryan Bates talks about utilizing Sphinx to make full text search. I would highly recommend such an approach instead of doing things from scratch :

http://railscasts.com/episodes/120-thinking-sphinx

link|improve this answer
feedback

You'd need to split the query into atoms, run each atom as a separate query then merge the results from each atom.

At this point things are getting pretty complex, you'd be better off using a search library such as Acts as Indexed which takes care of all this for you.

[Disclosure] I'm the author of Acts as Indexed.

link|improve this answer
feedback

Check out the Metasearch and Metawhere gems.

link|improve this answer
feedback

I don't quite understand your q but I hope this makes sense:

def self.search(search)
    if search
     where('title LIKE ? OR keyword1 LIKE ? OR keyword2 LIKE ?',"%#{search}%", "%#{search}%","%#{search}%")
    # find(:all, :conditions => ['title LIKE ?', "%#{search}%"])
    else
      all
    end
  end    
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.