elasticsearch自定义分析器

来源:互联网 发布:阿里云域名怎么绑定ip 编辑:程序博客网 时间:2024/06/07 01:41
PUT /my_index{    "settings": {        "analysis": {            "char_filter": {                "&_to_and": {                    "type":       "mapping",                    "mappings": [ "& => and "]            }},            "filter": {                "my_stopwords": {                    "type":       "stop",                    "stopwords": [ "the", "a" ]            }},            "analyzer": {                "my_analyzer": {                    "type":         "custom",                    "char_filter":  [ "html_strip", "&_to_and" ],                    "tokenizer":    "standard",                    "filter":       [ "lowercase", "my_stopwords" ]            }}        }     }}
0 0
原创粉丝点击