限制每个文档和字段索引的token数。
设置 | 描述 |
---|---|
max_token_count |
每个文档和字段应该索引的token的最大数量。 默认值为1 |
consume_all_tokens |
如果设置为true,尽管已经超过max_token_count设定的值,也会最大限度的处理所有的token。默认为false。 |
如下所示:
index :
analysis :
analyzer :
myAnalyzer :
type : custom
tokenizer : standard
filter : [lowercase, five_token_limit]
filter :
five_token_limit :
type : limit
max_token_count : 5