We need some help getting our SOLR deployment to work with EXACT MATCH search capability.
Specifically, we have a text type field in the schema and we want to apply an Exact Match Search with Phrase and Boolean Searches as well.
For example:
User enters:
DIRECTOR AND (FINANCE OR CONTROLLER OR ACCOUNTING)
…..But unfortunately, the results return records with words like:
ACCOUNT
CONTROLLING
Etc.
So essentially, SOLR is searching inside words – which of course we do not want. (Yes, it is at least prioritizing these results at the very END of a set of results…but still, our users want precise matches that the ‘Exact Match’ search is supposed to deliver.
We thought about changing the field to STRING instead of TEXT type, but STRING does not play well with phrase and Boolean searches.