I came to a situation where I needed to search my Active record, but I did not know which field contains the information. The solution with Ferret was just three steps away…
Let’s say, you want to search Stories for ‘Giant’ keyword. You have to create a Ferret index in memory (ferret gem needs to be installed), index all active records and gather all IDs matching the keyword.
index=Ferret::I.new
Story.find(:all).each { |s| index << {:id=>s.id, :content=>s.inspect} }
index.search_each('Giant', :limit=>100) do |id, score|
puts "Active record ID: #{index[id][:id]} with score #{score}"
end
… now you have the full power of the Ferret engine in your hands.