I have a document with multiple fields such as
"identifier" ( string ) analyzed
"description" ( string ) analyzed
"remark" ( string ) analyzed
of course the general scoring based queries work very well.
E.g. if I search for blue car it shows relevant results with the right scoring algorithm etc.
Although I have the requirement to implement a google like exact match query as well
E.g. "blue car" should only return documents where the exact phrase "blue car" appears anywhere in the text in any of the fields.
What is the best way to implement this ?
Thanks a lot !