How do I use ASCIIFoldingFilter in my Lucene app?

后端 未结 2 1253
伪装坚强ぢ
伪装坚强ぢ 2020-12-21 08:36

I have a standard Lucene app which searches from an index. My index contains a lot of french terms and I\'d like to use the ASCIIFoldingFilter.

I\'ve done a lot o

2条回答
  •  没有蜡笔的小新
    2020-12-21 08:59

    The token filters - like the ASCIIFoldingFilter - are at their base a TokenStream, so they are something that the Analyzer returns mainly by use of the following method:

    public abstract TokenStream tokenStream(String fieldName, Reader reader);
    

    As you have noticed, the filters take a TokenStream as an input. They act like wrappers or, more correctly said, like decorators to their input. That means they enhance the behavior of the contained TokenStream, performing both their operation and the operation of the contained input.

    You can find an explanation here. It is not directly refering to an ASCIIFoldingFilter but the same principle applies. Basically, you create a custom Analyzer with something like this in it (stripped down example):

    public class CustomAnalyzer extends Analyzer {
      // other content omitted
      // ...
      public TokenStream tokenStream(String fieldName, Reader reader) {
        TokenStream result = new StandardTokenizer(reader);
        result = new StandardFilter(result);
        result = new LowerCaseFilter(result);
        // etc etc ...
        result = new StopFilter(result, yourSetOfStopWords);
        result = new ASCIIFoldingFilter(result);
        return result;
      }
      // ...
    }
    

    Both the TokenFilter and the Tokenizer are subclasses of TokenStream.

    Remember also that you must make use of the same custom analyzer both in indexing and searching or you might get incorrect results in your queries.

提交回复
热议问题