Re: Scaling concerns

Поиск
Список
Период
Сортировка
От Steinar H. Gunderson
Тема Re: Scaling concerns
Дата
Msg-id 20061216173221.GA25410@uio.no
обсуждение исходный текст
Ответ на Scaling concerns  (tsuraan <tsuraan@gmail.com>)
Ответы Re: Scaling concerns
Re: Scaling concerns
Список pgsql-performance
On Sat, Dec 16, 2006 at 11:26:02AM -0600, tsuraan wrote:
> Even an operation like "select count(*) from messages" can take minutes,
> with a totally idle system.  Postgres seems to be the most scalable Free
> database out there, so I must be doing something wrong.

Unqualified SELECT COUNT(*) FROM foo is one of the most expensive operations
you can do on your system, since the visibility information has to be checked
on disk for each row. Instead, try real queries on real data, and post here
if some are too slow for you.

/* Steinar */
--
Homepage: http://www.sesse.net/

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

Предыдущее
От: tsuraan
Дата:
Сообщение: Scaling concerns
Следующее
От: Michael Stone
Дата:
Сообщение: Re: New to PostgreSQL, performance considerations