Bagikan melalui


SearchQueryType Enum

Definition

Specifies the syntax of the search query. The default is "simple". Use "full" if your query uses the Lucene query syntax.

public enum SearchQueryType
type SearchQueryType = 
Public Enum SearchQueryType
Inheritance
SearchQueryType

Fields

Full 1

Uses the full Lucene query syntax for searches.

Search text is interpreted using the Lucene query language which allows field-specific and weighted searches, as well as other advanced features.

Semantic 2

Best suited for queries expressed in natural language as opposed to keywords.

Improves precision of search results by re-ranking the top search results using a ranking model trained on the Web corpus.

Simple 0

Uses the simple query syntax for searches.

Search text is interpreted using a simple query language that allows for symbols such as +, * and \"\". Queries are evaluated across all searchable fields by default, unless the searchFields parameter is specified.

Applies to