Re: Paged Query

Поиск
Список
Период
Сортировка
От Craig Ringer
Тема Re: Paged Query
Дата
Msg-id 4FFB6E45.50708@ringerc.id.au
обсуждение исходный текст
Ответ на Re: Paged Query  (Misa Simic <misa.simic@gmail.com>)
Ответы Re: Paged Query  (Jeff Janes <jeff.janes@gmail.com>)
Список pgsql-performance
On 07/10/2012 06:24 AM, Misa Simic wrote:
> Hi Andrew,
>
> Sure... We are sending data in Json to clients
>
> {
> total:6784,
> data:[50 rows for desired page]
> }
>
> SELECT count(*) FROM table - without where, without joins used to have
> bad performance... However, in real scenario we have never had the case
> without joins and where... Join columns are always indexed, and we
> always try to put indexes on columns what will mostly be used in where
> in usual queries...

When/if you do need a count of a single table without any filters, a
common trick is to use table statistics to return an approximation. If
your autovaccum is running regularly it's usually a very good
approximation, too.

Sounds like this hack may become unnecessary in 9.2 though.

--
Craig Ringer

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

Предыдущее
От: Craig Ringer
Дата:
Сообщение: Re: Paged Query
Следующее
От: Jeff Janes
Дата:
Сообщение: Re: Paged Query