On Sun, 26 Oct 2003, Dror Matalon wrote:

> Here's the structure of the items table
[snip]
>  pubdate       | timestamp with time zone |
> Indexes:
>     "item_channel_link" btree (channel, link)
>     "item_created" btree (dtstamp)
>     "item_signature" btree (signature)
>     "items_channel_article" btree (channel, articlenumber)
>     "items_channel_tstamp" btree (channel, dtstamp)
> 
> 
> 5. Any other comments/suggestions on the above setup.

        Try set enable_seqscan = off; set enable_indexscan = on; to 
force the planner to use one of the indexes. Analyze the queries from 
your application and see what are the most used columns in WHERE clauses 
and recreate the indexes. select count(*) from items where channel < 
5000; will never use any of the current indexes because none matches 
your WHERE clause (channel appears now only in multicolumn indexes).

-- 
Any views or opinions presented within this e-mail are solely those of
the author and do not necessarily represent those of any company, unless
otherwise expressly stated.

---------------------------(end of broadcast)---------------------------
TIP 5: Have you checked our extensive FAQ?

               http://www.postgresql.org/docs/faqs/FAQ.html

Reply via email to