IvfflatIndexQueryOptions constructor

const IvfflatIndexQueryOptions({
  1. int probes = 1,
  2. IterativeScan iterativeScan = IterativeScan.off,
  3. int maxProbes = 32768,
})

Creates a new IVFFLAT index query options object.

Implementation

const IvfflatIndexQueryOptions({
  this.probes = 1,
  this.iterativeScan = IterativeScan.off,
  this.maxProbes = 32768,
}) : assert(
       iterativeScan != IterativeScan.strict,
       'Strict iterative scan is not supported for IVFFLAT indexes',
     );