From 6e9f74ddcebe7fcf12645eda6c6a8800ab9f752a Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Mon, 28 Oct 2024 20:04:09 -0700 Subject: [PATCH] Updated readme [skip ci] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4851120..7a69797 100644 --- a/README.md +++ b/README.md @@ -483,7 +483,7 @@ CREATE TABLE items (embedding vector(3), category_id int) PARTITION BY LIST(cate 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`). -There are two modes for iterative scans: strict and relaxed. +Iterative scans can use strict or relaxed ordering. Strict ensures results are in the exact order by distance