我有一个名为Discounts的表,其中的数组列名为user_id。
create_table "discounts", force: :cascade do |t|
t.string "amount"
t.string "name"
t.string "from"
t.string "to"
t.integer "user_id", default: [], array: true
我想搜索整个折扣表,仅查找具有user_id(current_user.id
)的行。
有什么想法如何植入这种搜索方式吗?
答案 0 :(得分:1)
Discount.where(":user_id = ANY(user_id)", user_id: current_user.id)
这应该为您做。我假设user_id
是postgres数据库中的一个数组字段。
我建议您也索引user_id
以提高性能。要为数组列创建索引,必须在GiST和GIN之间进行选择。 documentation很好地涵盖了这些选项,但简化的版本是GIN查找的速度快了(3倍),但构建时间却更长(10倍)。如果您读取数据的频率远高于写入数据的频率,请使用GIN。
您的迁移可能类似于:
create_table "discounts", force: :cascade do |t|
t.string "amount"
t.string "name"
t.string "from"
t.string "to"
t.integer "user_id", default: [], array: true
end
add_index :discounts, :user_id, using: 'gin'