gpt4 book ai didi

ruby-on-rails - 具有多个值的 add_index 在 Rails 迁移中有什么作用?

转载 作者:搜寻专家 更新时间:2023-10-30 19:56:44 24 4
gpt4 key购买 nike

我已通读 this并查看了this ,但我一点也不聪明:

这到底是做什么的(与传入单个列名相反),有什么优势?

add_index :resources, [:one, :two]

最佳答案

它在 resources 表的 onetwo 列上添加了一个多列索引。

声明:

add_index :resources, [:one, :two], name: 'index_resources_one_two'

相当于:

create index index_resources_one_two on resources(one, two)

传入单个列只会在该列上创建索引。例如下面一行:

add_index :resources, :one, name: 'index_resources_one'

相当于:

create index index_resources_one on resources(one)

多列索引的优势在于,当您在这些多列上进行条件查询时,它会有所帮助。

当查询包含对这些多列的条件时,与单列索引相比,使用多列索引,查询将处理较小的数据子集。

例如,我们的资源表包含以下行:

one, two 
1, 1
1, 1
1, 3
1, 4

以下查询:

select * from resources where one = 1 and two = 1;

如果定义了多列索引,则只需处理以下两行:

one, two 
1, 1
1, 1

但是,如果没有多列索引,比如说只有 one 有一个索引,那么查询就必须对所有 one 相等的行起作用到 1,这是四行。

关于ruby-on-rails - 具有多个值的 add_index 在 Rails 迁移中有什么作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18342380/

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