Packages

case class SearchRequest extends Product with Serializable

A request to the FTS (Full Text Search) service, allowing a SearchQuery and/or a VectorSearch to be run.

If both are provided, the FS service will merge the results.

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SearchRequest
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def productElementNames: Iterator[String]
    Definition Classes
    Product
  2. def searchQuery(searchQuery: SearchQuery): SearchRequest

    Include a SearchQuery.

    Include a SearchQuery.

    A maximum of one VectorSearch and one SearchQuery may be specified.

    returns

    a copy of this, for chaining.

  3. def vectorSearch(vectorSearch: VectorSearch): SearchRequest

    Include a VectorSearch.

    Include a VectorSearch.

    A maximum of one VectorSearch and one SearchQuery may be specified.

    returns

    a copy of this, for chaining.

    Annotations
    @SinceCouchbase()