Hi all,
I have started to use acts_as_ferret to add text searching to an application. In my example app (another blog!) I have defined and index in my article as follows:
acts_as_ferret :fields => [:title, :body]
I'd like an option to search on a single field e.g. get me all article where the title contains "rails", rather than all articles where the title or body contains "rails".
How can I constrain my search to a single field within the index?
Cheers,
Adam