Module seekstorm::search

source ·
Expand description

Search the index for all indexed documents, both for committed and uncommitted documents. The latter enables true realtime search: documents are available for search in exact the same millisecond they are indexed.

Structs§

Enums§

  • Specifies the default QueryType: The following query types are supported: Union (OR, disjunction), Intersection (AND, conjunction), Phrase (“”), Not (-). The default QueryType is superseded if the query parser detects that a different query type is specified within the query string (+ - “”).
  • The following result types are supported: Count (count all results that match the query, but returning top-k results is not required) Topk (returns the top-k results per query, but counting all results that match the query is not required) TopkCount (returns the top-k results per query + count all results that match the query)

Traits§

  • Search the index for all indexed documents, both for committed and uncommitted documents. The latter enables true realtime search: documents are available for search in exact the same millisecond they are indexed. Arguments: