From 307271214f5ee6d23a55a10408dfa5507d3a70b5 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Mon, 28 Oct 2024 21:42:05 -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 7a69797..aa84c4e 100644 --- a/README.md +++ b/README.md @@ -445,7 +445,7 @@ For multiple columns, consider a [multicolumn index](https://www.postgresql.org/ CREATE INDEX ON items (store_id, category_id); ``` -Exact indexes work well for conditions that match a small fraction of rows. For larger fractions, [approximate indexes](#indexing) can work better. +Exact indexes work well for conditions that match a lower percentage of rows. Otherwise, [approximate indexes](#indexing) can work better. ```sql CREATE INDEX ON items USING hnsw (embedding vector_l2_ops);