Re: Issue with stopwords when searching with PhraseQuery
Posted By:
vicente_vastich
Posted On:
Saturday, July 29, 2006 04:48 AM
Mods please remove query from Thread ...
It was a gaffe on my part - the search string was tokenized and stored in a java 'set' collection before firing the phrase query; I ended up adding terms to PhraseQuery out of sequence since most set implementations do not maintain the storage sequence. Fixed issue by using a LinkedHashSet.