IMHO, stemming is hurting index. A stemmed index can't be use for
completion or other kind of search.
But stemming is nice for synonyms search. You should look for
spellchecker code. If you index your word with stemmed version, you can
provide a synonym filter, just like wordnet example.
M.
Le lu
Hi,
I want to implement synonym search in my application.
I think there are two ways to implement synonym search.
Index the documents using a synonym analyzer
OR
Expand the query using a parser which uses a synonym analyzer.
Well I am expanding query as indexing with synonym analyzer takes
muc