From cfa23f2c7aaa062d458bd26e080cccc4a1d3a02c Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Thu, 17 Jun 2021 14:20:43 -0700 Subject: [PATCH] Added note on partitioning [skip ci] --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 739521e..46750eb 100644 --- a/README.md +++ b/README.md @@ -114,6 +114,8 @@ Consider [partial indexes](https://www.postgresql.org/docs/current/indexes-parti CREATE INDEX ON table USING ivfflat (column) WHERE (other_column = 123); ``` +To index many different values of `other_column`, consider [partitioning](https://www.postgresql.org/docs/current/ddl-partitioning.html) on `other_column`. + ## Reference ### Vector Type