gpt4 book ai didi

elasticsearch - Elasticsearch带破折号的模糊搜索短语

转载 作者:行者123 更新时间:2023-12-02 23:30:11 29 4
gpt4 key购买 nike

我试图找到一种方法来对带有“In-N-Out Burger”等描述的文档建立索引,并进行诸如“in n out”或“in and out”或直接“in-n-out”的搜索,让它返回“In-N-Out Burger”文档。浏览文档时,我对如何在建立索引或搜索时处理破折号感到困惑。有什么建议么?

我当前的设置和映射:

curl -XPUT http://localhost:9200/objects -d '{
"settings": {
"analysis": {
"analyzer": {
"lower": {
"type": "custom",
"tokenizer": "keyword",
"filter": [ "lowercase" ]
}
}
}
}
}'

curl -XPUT http://localhost:9200/objects/object/_mapping -d '{
"object" : {
"properties" : {
"objectDescription" : {
"type" : "string",
"fields" : {
"lower": {
"type": "string",
"analyzer": "lower"
}
}
},
"suggest" : {
"type" : "completion",
"analyzer" : "simple",
"search_analyzer" : "simple",
"payloads" : true
}
}
}
}'

最佳答案

用设置进行索引并放置文档时,我没有看到任何问题:

curl -XPUT http://localhost:9200/objects/object/001 -d '{
"description": "In-N-Out Burger",
"name" : "first_document"
}'

然后尝试找到它:
curl -XGET 'localhost:9200/objects/object/_search?q=in+and+out&pretty'
{
"took" : 6,
"timed_out" : false,
"_shards" : {
"total" : 5,
"successful" : 5,
"failed" : 0
},
"hits" : {
"total" : 1,
"max_score" : 0.05038611,
"hits" : [ {
"_index" : "objects",
"_type" : "object",
"_id" : "001",
"_score" : 0.05038611,
"_source" : {
"description" : "In-N-Out Burger",
"name" : "first_document"
}
} ]
}
}

要么
curl -XGET 'localhost:9200/objects/object/_search?pretty&q=in-n-out'
{
"took" : 8,
"timed_out" : false,
"_shards" : {
"total" : 5,
"successful" : 5,
"failed" : 0
},
"hits" : {
"total" : 1,
"max_score" : 0.23252454,
"hits" : [ {
"_index" : "objects",
"_type" : "object",
"_id" : "001",
"_score" : 0.23252454,
"_source" : {
"description" : "In-N-Out Burger",
"name" : "first_document"
}
} ]
}
}

如您所见,可以找到它。当您索引文档并尝试查找文档时,Analyzer使用“-”作为分隔符,并在标记上划分短语。您可以看到此工作:
curl -XGET 'localhost:9200/objects/_analyze?pretty=true' -d 'In-N-Out Burger'
{
"tokens" : [ {
"token" : "in",
"start_offset" : 0,
"end_offset" : 2,
"type" : "<ALPHANUM>",
"position" : 0
}, {
"token" : "n",
"start_offset" : 3,
"end_offset" : 4,
"type" : "<ALPHANUM>",
"position" : 1
}, {
"token" : "out",
"start_offset" : 5,
"end_offset" : 8,
"type" : "<ALPHANUM>",
"position" : 2
}, {
"token" : "burger",
"start_offset" : 9,
"end_offset" : 15,
"type" : "<ALPHANUM>",
"position" : 3
} ]
}

关于elasticsearch - Elasticsearch带破折号的模糊搜索短语,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37285295/

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