Anyway to index array with other columns - Mailing list pgsql-admin

From Chris Hoover
Subject Anyway to index array with other columns
Date
Msg-id C17CF1E6-B89A-4BBF-8821-11E559B523D9@aweber.com
Whole thread Raw
Responses Re: Anyway to index array with other columns  ("David G. Johnston" <david.g.johnston@gmail.com>)
Re: Anyway to index array with other columns  (Laurenz Albe <laurenz.albe@cybertec.at>)
List pgsql-admin
I think the answer is no, but I wanted to ask to be sure.

Given table below, is there any way to index  field_a, field_b, array_a?

Create table table1 (
field_a integer not null primary key,
field_b integer not null,
...
array_a text[]
)

My app is running queries similar to this:
Select * from table1 where field_a = 123 and field_b = 456 and array_a @> ARRAY[’tag_xyz’];

The array_a can have unto 1000 elements.  Currently these queries get very expensive if the array has any length to it.

Thanks for any ideas.

Thanks,


Chris Hoover
Senior DBA
AWeber.com
Cell: (803) 528-2269
Email: chrish@aweber.com



pgsql-admin by date:

Previous
From: "David G. Johnston"
Date:
Subject: Re: Assign User Defined DataType To Columns
Next
From: "David G. Johnston"
Date:
Subject: Re: Anyway to index array with other columns