Re: More speed counting rows

Поиск
Список
Период
Сортировка
От Scott Marlowe
Тема Re: More speed counting rows
Дата
Msg-id dcc563d10907270639n634086c0j904348ed3faa0744@mail.gmail.com
обсуждение исходный текст
Ответ на More speed counting rows  (Developer <dev002@pas-world.com>)
Список pgsql-performance
On Mon, Jul 27, 2009 at 3:06 AM, Developer<dev002@pas-world.com> wrote:
> Hello,
>
> I am trying to optimize the count of files when I am using filters
> (select by some row/s parameter/s)
>
> In this case I think that postgresql really count all files.
> Resulting in unacceptable times of 4 seconds in http server response.
> Triggers+store in this case do not see very acceptable, because I need
> store 1.5 millions of counting possibilities.
>
> My question is:
> Any method for indirect count like ordered indexes + quadratic count?
> Any module?
> Any suggestion?

Postgres cannot just use indexes, it has tot hit the tables.  Rather
than suspecting what pgsql is doing, use explain analyze select ... to
see what your query is actually doing.  If it is having to scan the
table each time, then faster IO or a different table layout may be in
order.

В списке pgsql-performance по дате отправления:

Предыдущее
От: Віталій Тимчишин
Дата:
Сообщение: Re: Can Postgres use an INDEX over an OR?
Следующее
От: Thomas Zaksek
Дата:
Сообщение: select query performance question