gpt4 book ai didi

使用 varchar_pattern_ops 索引而不是 pkey 索引的 Django-Postgres WHERE 查询

转载 作者:行者123 更新时间:2023-11-29 12:07:18 25 4
gpt4 key购买 nike

我有一个 Django-Postgres 设置这个表 -

class User(models.Model):
id = models.CharField(max_length=255, primary_key=True)

运行迁移会在字段上创建两个索引(这是我从运行 sqlmigrate 中检查时 Django 自动执行的操作)- 一个用于 pkey 的索引,一个用于 varchar_pattern_ops -

\d+ "user";

Column| Type | Modifiers | Storage | Stats target | Description
------+--------------------------+-----------+----------+--------------+-------------
id | character varying(255) | not null | extended | |

Indexes:
"user_pkey" PRIMARY KEY, btree (id)
"user_id_90845346_like" btree (id varchar_pattern_ops)

据我了解,如果我运行此查询

select * from "user" where id='id1234';

它应该使用user_pkey。相反,它使用 user_id_90845346_like

explain analyze select * from "user" where id='id1234';

Index Scan using "user_id_90845346_like" on "user" (cost=0.41..8.43 rows=1 width=770) (actual time=0.033..0.0
33 rows=0 loops=1)
Index Cond: ((id)::text = 'id1234'::text)
Planning time: 1.335 ms
Execution time: 0.072 ms
(4 rows)

我也没有看到任何强制 Postgres 使用索引的选项,但我真正想知道的是为什么 = 搜索不使用主键。 like text% 搜索不应该使用 varchar_pattern_ops 索引吗?

最佳答案

postgres 驱动程序总是会选择 varchar_pattern_ops 索引,如果它存在于您索引的列是 varchar 列或其某种变体的情况下。简而言之,因为要建立索引的列包含字符串,所以驱动程序会选择最适合字符串的索引(如果可用)。如果您将主键存储为整数,驱动程序将使用 btree 索引。

关于使用 varchar_pattern_ops 索引而不是 pkey 索引的 Django-Postgres WHERE 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55806331/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com