美文网首页elastic search
es搜索字段大小写不敏感

es搜索字段大小写不敏感

作者: 修行者12138 | 来源:发表于2022-01-07 01:38 被阅读0次

    需求
    username字段类型为keyword,需要实现termQuery username时,大小写不敏感

    settings设置如下

    {
        "index": {
            "routing": {
                "allocation": {
                    "total_shards_per_node": "2"
                }
            },
            "refresh_interval": "1s",
            "number_of_shards": "5",
            "number_of_replicas": "1"
        },
        "analysis": {
            "normalizer": {
                "lowercase": {
                    "filter": [
                        "lowercase"
                    ],
                    "type": "custom"
                }
            }
        }
    }
    

    mappings设置如下

    {
        "properties": {
            "username": {
                "normalizer": "lowercase",
                "type": "keyword"
            }
        }
    }
    

    相关文章

      网友评论

        本文标题:es搜索字段大小写不敏感

        本文链接:https://www.haomeiwen.com/subject/kutecrtx.html