In Elastic search, how can we search on free text. for example, we have free text data in one of the attribute like "test!£!£"!£"test".
when, i do search using QueryBuilders, it gives exception due to special characters.
On searching web, come to know that we need to use escapeUtils from Lucene. QueryParser.escape(searchText)
Now, when i do exact match search in this case it ignores those characters and brings up the result for "test" as well.
Please suggest something on this.