Master the Power of High-Performance Boolean Search Queries
SearchVista supports advanced queries, by utilizing logical operators, explicit forcing modifiers, phrases, and exclusions, you can find specific things efficiently.
By default, providing multiple terms without explicit operators acts as a logical AND match. All individual term must appear within a document for it to score as a matching hit.
distributed software database+ Modifier)Prepend a + symbol directly to a term to mark it as strictly required. This prevents the engine from relaxing your query into an alternative "best-effort" OR fallback mode if there are not many results.
retro computing +mips- Modifier)Prepend a - symbol directly to a term to completely remove documents containing that term from the results page.
operating systems -windows"...")Enclose terms inside quotation marks to search for the exact matching terms.
"the fastest search engine on the web"You can build grouped query conditions using parentheses and the uppercase OR keyword. A document satisfies the criteria if it matches all top-level requirements along with at least one matching term from the OR group.
operating system (unix OR bsd OR linux)5 fewer than results, the engine automatically attempts an term fallback, changing into an OR search mode to provide the closest available context. But, if any term is marked strict using a + prefix or explicit parenthetical AND rules, this relaxation phase is disabled for those terms.
Score = Base_Score * (Matched_Terms / Total_Query_Terms). This ensures results with the highest amount of matching terms stay near the top of the results.