All searches are case insensitive.
Example queries:
| Query |
Description |
| hello |
Find the word "hello" in any FIVS content |
| "hello world" |
Find the phrase "hello world" in any FIVS content |
| hello world |
Find any content that contains the word "hello" OR the word "world". This is the same as the query hello OR world |
| "hello world" AND wine |
Find any content that contains the phrase "hello world" AND the word "wine". |
| +hello world |
Find any content that may or may not contain the word "world" but must contain the word "hello". |
| "hello world" NOT wine |
Find any content that contains the phrase "hello world" and does NOT contain the word "wine". This is the same as entering the query "hello world" -wine |
| (hello OR world) AND wine |
This query is an example of grouping using AND and OR. |
| test* |
Find any content that contains a word that begins with "test". This will find test, tester and tests. |
| te?t |
Find any content that contains a four letter word that starts with te and ends with t. This will find text and test. |
| te*t |
Find any content that contains a word that begins with te and ends with t. This will find text and tempest. |
| title:"hello world" |
Search a specific field. Find any content where the phrase "hello world" appears in the title. See list below of available fields. If a field is not specified the default contents field will be used. |
| title:hello world |
Search for the word hello in the title and the word "world" in the default field. |
| roam~ |
Fuzzy search. Find words like foam and roams. |
| "hello world"~10 |
Proximity search. Find content that contains the word "world" within 10 words of the word "hello". |
| hello^4 world |
Boost a term. To boost a term use the caret, "^", symbol with a boost factor (a number) at the end of the term you are searching. The higher the boost factor, the more relevant the term will be. By default, the boost factor is 1. Although the boost factor must be positive, it can be less than 1 (e.g. 0.2) |
Searches are powered by the Apache Lucene search engine.