indexingThreshold property

  1. @TagNumber(6)
Int64 get indexingThreshold

Maximum size (in kilobytes) of vectors allowed for plain index, exceeding this threshold will enable vector indexing

Default value is 20,000, based on github.com/google-research/google-research/blob/master/scann/docs/algorithms.md.

To disable vector indexing, set to 0.

Note: 1kB = 1 vector of size 256.

Implementation

@$pb.TagNumber(6)
$fixnum.Int64 get indexingThreshold => $_getI64(5);
  1. @TagNumber(6)
set indexingThreshold (Int64 v)

Implementation

@$pb.TagNumber(6)
set indexingThreshold($fixnum.Int64 v) { $_setInt64(5, v); }