我对 lucene 标记化过程有一个基本问题:
TokenStream tokenStream = analyzer.tokenStream(fieldName, reader);
TermAttribute termAttribute = tokenStream.addAttribute(TermAttribute.class);
termAttribute 是做什么用的? tokenStream.addAttribute(TermAttribute.class) 有什么作用?
谢谢!