我正在尝试找到一种方法来索引文档,例如" In-N-Out Burger"然后进行搜索,例如" in n out"或者"进出"或者直接" in-n-out"并让它返回" In-N-Out汉堡"文献。浏览文档我很困惑如何在索引或搜索时处理破折号。有什么建议吗?
我当前的设置和映射:
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
}
}
}
}'
答案 0 :(得分:1)
当我使用您的设置创建索引并放置文档时,我还没有看到任何问题:
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"
}
} ]
}
}
你可以看到它可以找到。分析仪使用' - '作为分隔符并在索引文档时以及尝试查找时在标记上划分短语。你可以看到这项工作:
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
} ]
}