Updated readme [skip ci]

This commit is contained in:
Andrew Kane
2024-10-29 00:04:35 -07:00
parent 96a5a44632
commit e3e74fe94e

View File

@@ -479,7 +479,7 @@ CREATE TABLE items (embedding vector(3), category_id int) PARTITION BY LIST(cate
*Unreleased*
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 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`).
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 automatically scan more of the index until enough results are found (or it reaches `hnsw.max_scan_tuples` or `ivfflat.max_probes`).
Iterative scans can use strict or relaxed ordering.