1
我正試圖使用以下過濾器查詢包含電子郵件地址的彈性搜索中的列。Elastic Search中的查詢電子郵件列
{
"query": {
"bool": {
"must": [
{
"term": {
"from":"[email protected]"
}
}
]
}
},
"from": 0,
"size": 10,
"sort": [],
"aggs": {}
}
如果我嘗試andrei它工作正常。另外如果我嘗試hotmail.com123。但是,如果我嘗試搜索[email protected],則不會返回任何內容。任何線索爲什麼?
這個答案應該有所幫助:https://stackoverflow.com/questions/35124725/emails - 不是幸福,搜索的正常功能於elasticsearch/35124883#35124883 – Val