我是弹性搜索新手。我创建了一个索引并使用了以下分析器
{
"settings": {
"index": {
"number_of_shards": 1,
"number_of_replicas": 1
},
"analysis": {
"analyzer": {
"folding": {
"tokenizer": "standard",
"filter": ["lowercase", "asciifolding"]
}
}
}
}
}
创建索引时。问题是我使用的时候
title.folded = "string to be searched"
我无法获得索引中存在的某些数据的结果,如果我不使用,我会得到结果但是重音不起作用。可能是什么问题?