Updated readme [skip ci]

This commit is contained in:
Andrew Kane
2024-10-28 23:52:16 -07:00
parent 67e1392a83
commit 96a5a44632

View File

@@ -445,7 +445,7 @@ For multiple columns, consider a [multicolumn index](https://www.postgresql.org/
CREATE INDEX ON items (location_id, category_id); CREATE INDEX ON items (location_id, category_id);
``` ```
Exact indexes work well for conditions that match a lower percentage of rows. Otherwise, [approximate indexes](#indexing) can work better. Exact indexes work well for conditions that match a low percentage of rows. Otherwise, [approximate indexes](#indexing) can work better.
```sql ```sql
CREATE INDEX ON items USING hnsw (embedding vector_l2_ops); CREATE INDEX ON items USING hnsw (embedding vector_l2_ops);