fullScanThreshold property

  1. @TagNumber(3)
Int64 get fullScanThreshold

Minimal size (in KiloBytes) of vectors for additional payload-based indexing. If the payload chunk is smaller than full_scan_threshold additional indexing won't be used - in this case full-scan search should be preferred by query planner and additional indexing is not required. Note: 1 Kb = 1 vector of size 256

Implementation

@$pb.TagNumber(3)
$fixnum.Int64 get fullScanThreshold => $_getI64(2);
  1. @TagNumber(3)
set fullScanThreshold (Int64 v)

Implementation

@$pb.TagNumber(3)
set fullScanThreshold($fixnum.Int64 v) { $_setInt64(2, v); }