|
Operator
|
Action
|
Example
|
|
"term1 term2 ..."
|
Specifies that words should be adjacent
|
"laser printer"
|
|
+term
|
Requires a term
|
+"laser printer" color
|
|
-term
|
Excludes documents containing a term
|
"laser printer" -color
|
|
fieldname:term
|
Specifies that the term must be found in that field. See listing of fieldnames in the table
below.
|
title:"laser printer"
|
|
query1 | query2
|
Searches the results of query1 with query2, ranking results by relevance to both query1 and query2.
|
dogs, cats | fleas
|
|
query1 || query2
|
Searches the results of query1 with query2, ranking results only by relevance to query2.
|
trucks, cars || tires
|
Note: Lowercase terms match any case, otherwise case is matched exactly as typed.
|
|