1
0
mirror of https://github.com/pgvector/pgvector.git synced 2025-04-18 11:24:01 +03:00

Updated readme [skip ci]

This commit is contained in:
Andrew Kane 2025-04-13 13:07:31 -07:00
parent ebbfe8dba0
commit 83d410eae9

View File

@ -477,8 +477,6 @@ CREATE TABLE items (embedding vector(3), category_id int) PARTITION BY LIST(cate
## Iterative Index Scans
*Added in 0.8.0*
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.