You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
With approximate indexes, queries with filtering can return less results since filtering is applied*after* the index is scanned. Starting with 0.8.0, you can enable iterative index scans. If too few results from the initialscanmatch the filters,thescan will resume until enough results are found (or it reaches`hnsw.max_scan_tuples` or`ivfflat.max_probes`).
482
+
With approximate indexes, queries with filtering can return less results since filtering is applied*after* the index is scanned. Starting with 0.8.0, you can enable iterative index scans, which will automaticallyscanmore oftheindex until enough results are found (or it reaches`hnsw.max_scan_tuples` or`ivfflat.max_probes`).
483
483
484
484
Iterative scans can use strict or relaxed ordering.