I am new to ES. I am having trouble finding exact phrase matches.
Let's assume my index has a field called movie_name. Let's assume I have 3 documents with the following values
- movie_name = Mad Max
- movie_name = mad max
- movie_name = mad max 3d
If my search query is Mad Max, I want the first 2 documents to be returned but not the 3rd.
If I do the "not_analyzed" solution I will get only document 1 but not 2.
What am I missing?