在Elasticsearch中,我有一个名为" address"的字段,该字段数据被索引为
"322 Wall Tax Road"
在每个单词之间添加了多个空格。因此,在寻找" 322 Wall Tax Road"没有返回数据。
有没有办法忽略额外的空格而无需重新索引。 谢谢。
这是我目前的映射
"mappings": {
"esiid": {
"properties": {
"address": {
"type": "string",
"index": "not_analyzed"
},
"city": {
"type": "string"
},
"zip": {
"type": "string"
}
}
}
答案 0 :(得分:0)
如何简单地用一个空格替换双空格?
$workedString = str_replace(" "," ",$yourString);