Hello List members,
Please help me to fix a problem in my DictionaryFilter class. It is
used to map acronyms, abbreviations, synonyms, etc. to one common root
word/phrase for easy searching. For example, "temp" is an abbreviation
for "temperature". One-to-one substitutions work without probl
My dictionary filter currently implements next() and everything works well
when dictionary entries are replaced one-to-one. For example: Can =>
Canada.
A problem arises when I try to replace it with more than one word. Going
through next() I encounter "shutdown". But the dictionary entry takes
EMAIL PROTECTED]
Sent: Wednesday, April 09, 2008 3:42 AM
To: java-user@lucene.apache.org
Subject: Re: designing a dictionary filter with multiple word entries
Allen Atamer a écrit :
> My dictionary filter currently implements next() and everything works well
> when dictionary entries are replaced