Re: Query performance question

Поиск
Список
Период
Сортировка
От David Olbersen
Тема Re: Query performance question
Дата
Msg-id Pine.LNX.4.31.0103281252320.10824-100000@bubbles.electricutopia.net
обсуждение исходный текст
Ответ на Query performance question  (Lukas Ertl <l.ertl@univie.ac.at>)
Ответы Re: Query performance question  (Lukas Ertl <l.ertl@univie.ac.at>)
Список pgsql-novice
On Wed, 28 Mar 2001, Lukas Ertl wrote:

There are two things you should do first:

1) VACUUM ANALYZE hits;
2) VACUUM ANALYZE referrer;

If it's still running slowly, try EXPLAINing your SELECT to us.

Also, it's been my experience that LIMIT's slow down a query, though I could be
dead wrong.


> SELECT count(*), url FROM hits, referrer WHERE referrer.id = referrer_id
> GROUP BY url ORDER BY count DESC LIMIT 10;
>
> And this query takes almost five seconds to complete, and that seems to me
> quite slow. The database is running on a Duron 700 with 256 MB RAM and
> ATA-66 disks. Operating system is FreeBSD-4.2.
>
> Are there some tuning knobs I could turn?

-- Dave


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

Предыдущее
От: Lukas Ertl
Дата:
Сообщение: Query performance question
Следующее
От: Lukas Ertl
Дата:
Сообщение: Re: Query performance question