Minimum Must Match Query
This is query is used when you want to match any X number of words from a list of words. For instance, this type of query can be used if you have 8 words out of which you need atleast 3 words in any record to be relevant for inspection.
Use any# to enforce a minimum number of words to match within an OR’ed list where # is the number of minimum words that should be present.
TAC: any2(compute* or terminal or pc or laptop): This will match any 2 words from the list of words in OR query.
Its important that all words within the bracket are combined with an OR only. AND/NOT will not work inside the list of words. However you can combine the whole query any#() with AND or NOT.
For example: TAC:((any2(compute* or terminal or pc or laptop) AND network* ) NOT protocol)
Note: Wildcards and operators are not to be used inside ANY#, NLPL, NLPM, NLPH query