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
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -451,7 +451,7 @@ Exact indexes work well for conditions that match a lower percentage of rows. Ot
451
451
CREATEINDEXON items USING hnsw (embedding vector_l2_ops);
452
452
```
453
453
454
-
With approximate indexes, filtering is applied after the index is scanned (known as post-filtering). If a condition matches 10% of rows, with HNSW and the default`hnsw.ef_search` of 40, only 4 rows will match on average. For more rows, increase`hnsw.ef_search`.
454
+
With approximate indexes, filtering is applied*after* the index is scanned. If a condition matches 10% of rows, with HNSW and the default`hnsw.ef_search` of 40, only 4 rows will match on average. For more rows, increase`hnsw.ef_search`.