Is it possible to find fullTextQuery exactly a word with special characters? A luke search works well with a query, but from fullTextQuery does not return results.
new BooleanClause(qBuilder.keyword().wildcard().
onField("field").matching("c++").createQuery(),BooleanClause.Occur.MUST)
No wildcards to search for "c" without special characters.
How to solve this problem?
source
share