gpt4 book ai didi

elasticsearch - 正确的分析仪用于带反斜杠的字段

转载 作者:行者123 更新时间:2023-12-02 23:10:43 25 4
gpt4 key购买 nike

因此,我正在尝试使用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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com