我是Elasticsearch的新手,但我想在单词中搜索
例如,如果我搜索" helloworld"是否可以仅键入" world"?
现在它适用于案例"你好" elasticsearch为我回复了建议helloworld
以下是代码:
{
"settings": {
"number_of_shards": 1,
"analysis": {
"filter": {
"autocomplete_filter": {
"type": "edge_ngram",
"min_gram": 1,
"max_gram": 20
}
},
"analyzer": {
"autocomplete": {
"type": "custom",
"tokenizer": "standard",
"filter": [
"lowercase",
"autocomplete_filter"
]
}
}
}
},
"mappings": {
"word": {
"properties": {
"text": {
"type": "string",
"analyzer": "autocomplete"
}
}
}
}
}
任何人都可以给我任何建议吗?