Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commite6bae17

Browse files
committed
Updated readme [skip ci]
1 parent52b777e commite6bae17

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

‎README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -463,15 +463,13 @@ Starting with 0.8.0, you can enable [iterative index scans](#iterative-index-sca
463463
SEThnsw.iterative_scan= strict_order;
464464
```
465465

466-
You can also create separate approximate indexes for each condition value (or groups of values).
467-
468-
If filtering by a few distinct values, use[partial indexing](https://www.postgresql.org/docs/current/indexes-partial.html).
466+
If filtering by only a few distinct values, consider[partial indexing](https://www.postgresql.org/docs/current/indexes-partial.html).
469467

470468
```sql
471469
CREATEINDEXON items USING hnsw (embedding vector_l2_ops)WHERE (category_id=123);
472470
```
473471

474-
If filtering by many different values,use[partitioning](https://www.postgresql.org/docs/current/ddl-partitioning.html).
472+
If filtering by many different values,consider[partitioning](https://www.postgresql.org/docs/current/ddl-partitioning.html).
475473

476474
```sql
477475
CREATETABLEitems (embedding vector(3), category_idint) PARTITION BY LIST(category_id);

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp