ES设置不区分大小写
默认情况下,ES 查询是区分大小写的。
但 ES 也支持自定义 settings 和 mappings 中指定具体哪些字段不区分大小写。
注意:先看下 ES 的版本,是否支持区分大小写功能
GET /
# 输出以下结果
{
"name" : "",
"cluster_name" : "",
"cluster_uuid" : "",
"version" : {
"number" : "ES版本号",
"build_flavor" : "",
"build_type" : "",
"build_hash" : "",
"build_date" : "",
"build_snapshot" : false,
"lucene_version" : "lucene的版本号",
"minimum_wire_compatibility_version" : "",
"minimum_index_compatibility_version" : ""
},
"tagline" : "You Know, for Search"
}
创建索引的时候指定 sex 字段(注意,一定要是字符串类型!)不区分大小写。
# user_index 为索引名称
PUT user_index
{
"settings": {
"analysis": {
"normalizer": {
"my_normalizer": {
"type": "custom",
"filter": [
"lowercase"
]
}
}
}
},
"mappings": {
"doc": {
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "keyword"
},
"sex": {
"type": "keyword",
"normalizer": "my_normalizer"
}
}
}
}
}
重启 ES,并重新导入数据即可。
下一篇:没有了
收藏文章
-
最新评论
热评话题
- bootstrap框架返回顶部效果和样式_小白的日常记录,小白博客,php博客,个人博客,技术博客,个人随笔记录,【小白】随笔记录
- PHP 同步写入迅搜(xunsearch)索引、更新索引和删除索引_小白的日常记录,小白博客,php博客,个人博客,技术博客,个人随笔记录,【小白】随笔记录
- Linux下的迅搜(xunsearch)安装使用教程,并设置成开机启动服务_小白的日常记录,小白博客,php博客,个人博客,技术博客,个人随笔记录,【小白】随笔记录
- Linux 下的Redis服务安装和自动启动配置_小白的日常记录,小白博客,php博客,个人博客,技术博客,个人随笔记录,【小白】随笔记录
- Linux下使用vim编辑文件时,按了Ctrl+C的解决办法_小白的日常记录,小白博客,php博客,个人博客,技术博客,个人随笔记录,【小白】随笔记录
- CentOS7 安装配置Samba服务器_小白的日常记录,小白博客,php博客,个人博客,技术博客,个人随笔记录,【小白】随笔记录
- VMWare里CentOS7与win10共享文件【完美跑通】_小白的日常记录,小白博客,php博客,个人博客,技术博客,个人随笔记录,【小白】随笔记录