IvfflatIndexQueryOptions constructor
const
IvfflatIndexQueryOptions({
- int probes = 1,
- IterativeScan iterativeScan = IterativeScan.off,
- 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',
);