作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
因此,我正在尝试使用Windows凭据字段(格式为domain\username
)的正确分析器设置新的索引映射。
我希望能够搜索域,用户名和域\用户名。但是默认的分析器似乎忽略了反斜杠(意思是,如果我尝试搜索domain \ username,它将搜索“domain OR username”而忽略反斜杠),并且如果我尝试使用空格分析器,则它似乎仅在domain \上匹配用户名。
有小费吗?
最佳答案
您可以使用路径层次结构标记器,将反斜杠设置为定界符-doc here
尝试:
PUT my_index
{
"settings": {
"analysis": {
"analyzer": {
"custom_path_tree": {
"tokenizer": "custom_hierarchy"
},
"custom_path_tree_reversed": {
"tokenizer": "custom_hierarchy_reversed"
}
},
"tokenizer": {
"custom_hierarchy": {
"type": "path_hierarchy",
"delimiter": "\"
},
"custom_hierarchy_reversed": {
"type": "path_hierarchy",
"delimiter": "\",
"reverse": "true"
}
}
}
},
"mappings": {
"properties": {
"file_path": {
"type": "text",
"fields": {
"tree": {
"type": "text",
"analyzer": "custom_path_tree"
},
"tree_reversed": {
"type": "text",
"analyzer": "custom_path_tree_reversed"
}
}
}
}
}
}
POST my_index/_analyze
{
"analyzer": "custom_path_tree",
"text": "C:\Windows\Users"
}
关于elasticsearch - 正确的分析仪用于带反斜杠的字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60924725/
我是一名优秀的程序员,十分优秀!