Re: NorwegianLightStemFilterFactory and protected words

2013-03-01 Thread Remi Mikalsen
;/> > > Ahmet > > --- On Fri, 3/1/13, Remi Mikalsen > wrote: > > > From: Remi Mikalsen > > Subject: Re: NorwegianLightStemFilterFactory and protected words > > To: solr-user@lucene.apache.org > > Date: Friday, March 1, 2013, 4:38 PM > > T

Re: NorwegianLightStemFilterFactory and protected words

2013-03-01 Thread Remi Mikalsen
Remi, You need to use *Factory class. Ahmet --- On Fri, 3/1/13, Remi Mikalsen wrote: > From: Remi Mikalsen > Subject: Re: NorwegianLightStemFilterFactory and protected words > To: solr-user@lucene.apache.org > Date: Friday, March 1, 2013, 4:38 PM > Thanks for such a quick

Re: NorwegianLightStemFilterFactory and protected words

2013-03-01 Thread Ahmet Arslan
Hi Remi, You need to use *Factory class. Ahmet --- On Fri, 3/1/13, Remi Mikalsen wrote: > From: Remi Mikalsen > Subject: Re: NorwegianLightStemFilterFactory and protected words > To: solr-user@lucene.apache.org > Date: Friday, March 1, 2013, 4:38 PM > Thanks for such a

Re: NorwegianLightStemFilterFactory and protected words

2013-03-01 Thread Remi Mikalsen
Thanks for such a quick response! I tried out the suggestion, but I'm struggeling with actually making it work: schema.xml: Produces an instantiation error: SEVERE: org.apache.solr.common.SolrException: Error instantiating class: 'org.apache.lucene.analysis.KeywordMarkerFilter ... Caused b

RE: NorwegianLightStemFilterFactory and protected words

2013-03-01 Thread Markus Jelsma
Hi Remi, The filter does not support protwords but does support the KeywordAttribute. Use the KeywordMarkerFilter to mark a list of words and protect them from stemming. http://lucene.apache.org/core/4_1_0/analyzers-common/org/apache/lucene/analysis/miscellaneous/KeywordMarkerFilter.html Cheer