Re: Synonym Search and stemming

2007-07-23 Thread Mathieu Lecarme
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

Synonym Search and stemming

2007-07-23 Thread sandeep chawla
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