Displaying 1 result from an estimated 1 matches for "project_client_company_id".
2007 Aug 20
2
can''t stop stop_words
...searching, but I can''t
seem to stop the STOP_WORDS from cutting out common words. I am using
acts_as_ferret and I have add the following to my code:
STOP_WORDS = []
acts_as_ferret({ :fields => { :name => { :boost
=> 10 },
:project_client_company_id => { :boost
=> 0 }
}
},
{:analyzer =>
Ferret::Analysis::StandardAnalyzer.new(STOP_WORDS)})
Regardless, words like ''into'' are not being indexed (I have looked at
the index files). I have been re-in...