Re: Analyzer Does Not Works As Accepted

2014-02-28 Thread Furkan KAMACI
ve the > WordDelimiterFilter > in your analysis chain. > > > Regards > Pravesh > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Analyzer-Does-Not-Works-As-Accepted-tp4119898p4120363.html > S

Re: Analyzer Does Not Works As Accepted

2014-02-28 Thread pravesh
>>I fixed the problems. StopFilter was not working as accepted because of letter cases. Alternatively, you could have moved StopFilter above the WordDelimiterFilter in your analysis chain. Regards Pravesh -- View this message in context: http://lucene.472066.n3.nabble.com/Analyzer-Do

Re: Analyzer Does Not Works As Accepted

2014-02-26 Thread Furkan KAMACI
Hi; I fixed the problems. StopFilter was not working as accepted because of letter cases. I've changed the flags of WordDelimiter. Also I've changed TokenStream to TokenFilter. Thanks; Furkan KAMACI 2014-02-26 20:05 GMT+02:00 Furkan KAMACI : > Hi; > > I have impelented that custom Analyzer: >

Analyzer Does Not Works As Accepted

2014-02-26 Thread Furkan KAMACI
Hi; I have impelented that custom Analyzer: public class DisambiguatorAnalyzer extends Analyzer { Version version = Version.LUCENE_46; List stopWordList; public DisambiguatorAnalyzer(List stopWordList) throws IOException { super(); this.stopWordList = stopWordList; }