Query |
Example |
Notes |
single term |
document |
Searches for documents that contain “document”
term in the default field. |
phrase |
“important document” |
Searches for documents that contain the phrase “important
document” in the default fiels. |
wildcard search |
doc?ment |
Single-character wildcard search. It will match “document”
and “dociment” but not “docooment”. |
|
document* |
Multi-character wildcard search. It will match “document”
and “documentation”. |
fuzzy search |
document~ |
Search based on similar spelling. |
|
document~0.9 |
Search based on similar spelling. 0.9 is the required
similarity (default: 0.5) |
OR operator |
important document |
“OR” is the default operator. |
|
important OR document |
The default field must contain either “important”
or “document”. |
AND operator |
important AND document |
The default field must contain both word. |
+ operator |
important +document |
The default field must contain “document” and may
contain “important”. |
NOT/- operator |
-important document |
The default field must contain “document” but not
“important”. |