Re: PhpBB 3.x query review - Mailing list pgsql-general

From Shelby Cain
Subject Re: PhpBB 3.x query review
Date
Msg-id 270856.4540.qm@web55401.mail.re4.yahoo.com
Whole thread Raw
In response to PhpBB 3.x query review  (Jean-Michel Pouré <jm@poure.com>)
List pgsql-general

----- Original Message ----
> From: Jean-Michel Pouré <jm@poure.com>
> To: pgsql-general@postgresql.org
> Sent: Monday, January 7, 2008 11:06:09 AM
> Subject: [GENERAL] PhpBB 3.x query review
>
>
> I set indexes on ban_email, ban_userid and ban_ip.
> But the query plan is still the same.
>
> Any idea?
>

There is hardly any data in the table (~133 rows per page by my calculation) so the planner is choosing
to do a direct sequential scan instead of using an indirect lookup through an
index because it is faster.  Considering the query returned in under 0.1ms I think you may be engaging in premature
optimizationby adding indexes to this table.  If you expect that table to eventually contain many thousands of entries
thenan index might be prudent. 


Regards,

Shelby Cain






      ____________________________________________________________________________________
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile.  Try it now.  http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ


pgsql-general by date:

Previous
From: Kevin Hunter
Date:
Subject: many to one of many modeling question
Next
From: Shane Ambler
Date:
Subject: Re: PhpBB 3.x query review