在 Postgres 表索引中包含多个字段

发布于 2024-10-21 02:14:51 字数 110 浏览 1 评论 0原文

我正在使用 Postgres 8.4,并使用 ILIKE 执行搜索。由于我正在从该表中搜索 4 列(包含文本),因此我想知道是否可以为所有 4 列创建单个索引,而不是为每列创建索引。

谢谢。

I'm using Postgres 8.4 and I'm performing a search using ILIKE. Since I'm searching in 4 columns (containing text) from that table I was wondering if it's ok to create a single index for all the 4 columns and not an index for each column.

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

逆流 2024-10-28 02:14:51

这是一个有点复杂的话题。一般来说,数据库不会优化 LIKE 查询,除非它锚定到开头。如果您要搜索 4 列,那么情况可能并非如此。

http://www.postgresql.org/docs/8.4/static/indexes -types.html

优化器还可以使用 B 树
涉及以下查询的索引
模式匹配运算符 LIKE 和 ~
如果模式是一个常数并且是
锚定于开头
字符串 — 例如,col LIKE 'foo%'
或 col ~ '^foo',但不是 col LIKE
'%酒吧'。但是,如果您的数据库确实
不使用 C 语言环境,您将需要
使用特殊的方法创建索引
支持索引的运算符类
模式匹配查询;见章节
11.9 以下。也可以对 ILIKE 和 ~* 使用 B 树索引,但是
仅当模式开头为
非字母字符,即
不受影响的字符
大/小写转换。

如果您正在进行自然语言查询(如搜索引擎),您可以考虑 postgresql 中的全文支持...

This is a bit of a complicated topic. In general databases will not optimize a LIKE query unless it is anchored to the beginning. If you are searching across 4 columns, then this is LIKEly not the case.

http://www.postgresql.org/docs/8.4/static/indexes-types.html

The optimizer can also use a B-tree
index for queries involving the
pattern matching operators LIKE and ~
if the pattern is a constant and is
anchored to the beginning of the
string — for example, col LIKE 'foo%'
or col ~ '^foo', but not col LIKE
'%bar'. However, if your database does
not use the C locale you will need to
create the index with a special
operator class to support indexing of
pattern-matching queries; see Section
11.9 below. It is also possible to use B-tree indexes for ILIKE and ~*, but
only if the pattern starts with
non-alphabetic characters, i.e.,
characters that are not affected by
upper/lower case conversion.

You may consider the full text support in postgresql if you are doing natural language queries (like a search engine)...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文