Interface Points.SearchParamsOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
Points.SearchParams, Points.SearchParams.Builder
Enclosing class:
Points

public static interface Points.SearchParamsOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Search without approximation.
    long
    Params relevant to HNSW index.
    boolean
    Search without approximation.
    boolean
    Params relevant to HNSW index.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • hasHnswEf

      boolean hasHnswEf()
      Params relevant to HNSW index. Size of the beam in a beam-search.
      Larger the value - more accurate the result, more time required for search.
       
      optional uint64 hnsw_ef = 1;
      Returns:
      Whether the hnswEf field is set.
    • getHnswEf

      long getHnswEf()
      Params relevant to HNSW index. Size of the beam in a beam-search.
      Larger the value - more accurate the result, more time required for search.
       
      optional uint64 hnsw_ef = 1;
      Returns:
      The hnswEf.
    • hasExact

      boolean hasExact()
      Search without approximation. If set to true, search may run long but with exact results.
       
      optional bool exact = 2;
      Returns:
      Whether the exact field is set.
    • getExact

      boolean getExact()
      Search without approximation. If set to true, search may run long but with exact results.
       
      optional bool exact = 2;
      Returns:
      The exact.