Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这两个过滤器有什么区别?它们似乎具有相同的效果?
谁能提供一个如何将它们应用于某些文本的示例?
好吧,第一个提供 a Tokenizer,第二个提供 a Filter;-)
Tokenizer
Filter
由于您只能拥有一个 Tokenizer,EdgeNGramTokenizerFactory 仅对包含单个单词的字段有用。如果您想将您为文档提供的字符串分成单词,您首先需要一个不同的 Tokenizer,它在空格或其他内容上拆分,然后是 EdgeNGramFilterFactory。