Syntax: -order(I):"term1 term2 ... termN" or -order:"term1 term2 ... termN"
This operator can be used to relax the EXACT operator by allowing at most I terms between the query terms although still only matching documents with all the query terms in the submitted order.
If no distance metric is given, document matching all the terms in the submitted order regardless of distance between them will be matched.
Example: -order(2):"Green Day American Idiot"
Matches the text "... new Green Day album named American Idiot is out now..."
Does not match the text "... new Green Day album provocatively named American Idiot is out now..."
Using the operator with 1 as the distance metric, the operator is evaluated the same way as an EXACT query.
Furthermore, omitting the distance metric, both of the above texts would be matched.
The operators can be used along with other operators, thus giving the user a flexible syntax to build the queries needed to find the most relevant information.
To top of page