pe of thing usually comes down to individual
> requirements/filter limitations. If your stopword list has diacriticals
> and you run the accent filter before applying the stopword list, some
> expected stopwords will never be removed...etc.
>
>
> Christophe from paris w
so, you will no longer be able to
> differentiate between the two in your searching (rarely that important
> in my opinion, but others certainly disagree).
>
> - Mark
>
> Christophe from paris wrote:
>> Hello
>>
>> I'm use FrenchAnalyzer for index
>
Hello
I'm use FrenchAnalyzer for index
IndexWriter writer = new IndexWriter(pathOfIndex, new FrenchAnalyzer(),
true);
Document = new Document();
doc.add(new
Field("TXT_CHARACT_VALUE",word.toLowerCase(),Field.Store.YES,Field.Index.TOKENIZED));
writer.addDocument(doc);
And search
IndexReader re