Solr SynonymFilter in Lucene analyzer

2010-08-17 Thread Arun Rangarajan
I am trying to have multi-word synonyms work in lucene using Solr's * SynonymFilter*. I need to match synonyms at index time, since many of the synonym lists are huge. Actually they are really not synonyms, but are words that belong to a concept. For example, I would like to map {"New York", "Los

Re: Solr SynonymFilter in Lucene analyzer

2010-08-18 Thread Arun Rangarajan
x27;s SynonymFilter within a custom lucene analyzer? Thanks. On Tue, Aug 17, 2010 at 4:44 PM, Arun Rangarajan wrote: > I am trying to have multi-word synonyms work in lucene using Solr's * > SynonymFilter*. > > I need to match synonyms at index time, since many of the synonym lis

Re: Solr SynonymFilter in Lucene analyzer

2010-08-26 Thread Arun Rangarajan
lysis software parses a sentence and labels words 'Noun', > 'Verb', etc. One suite stores these labels as payloads on the terms. > This might be a better way to store your categories, rather than using > the synonym filter. > > On Wed, Aug 18, 2010 at 9:55 PM, Arun Rangar