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 (due to post-filtering). Starting with 0.8.0, you can enable iterative index scans. If too few results from the initial scan match the filters, the scan will resume until enough results are found (or it reaches`hnsw.max_scan_tuples` or`ivfflat.max_probes`). This can significantly improve recall.
458
+
With approximate indexes, queries with filtering can return less results (due to post-filtering). Starting with 0.8.0, you can enable iterative index scans. If too few results from the initial scan match the filters, the scan will resume until enough results are found (or it reaches`hnsw.max_scan_tuples` or`ivfflat.max_probes`).
459
459
460
460
There are two modes for iterative scans: strict and relaxed.
461
461
@@ -493,7 +493,7 @@ Note: Place any other filters inside the CTE
493
493
494
494
###Iterative Scan Options
495
495
496
-
Since scanning a large portion of an approximate index is expensive, there are options to control when a scan ends
496
+
Since scanning a large portion of an approximate index is expensive, there are options to control when a scan ends.