I am trying to implement email search with ElasticSearch.
Here are the example documents.
{
...
"email": "[email protected]"
},
{
...
"email": "[email protected]"
}
So when I use the match query: { "match": { "email": "[email protected]"
} }
I get both of "[email protected]"
and "[email protected]"
but the result must be only "[email protected]"
.
I think it is because of @
character.
Any good solution to resolve this issue?