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
>>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
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:
>
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;
}