Re: 10+hrs vs 15min because of just one index

Поиск
Список
Период
Сортировка
От Matthew T. O'Connor
Тема Re: 10+hrs vs 15min because of just one index
Дата
Msg-id 43ECC9BF.2030107@zeut.net
обсуждение исходный текст
Ответ на 10+hrs vs 15min because of just one index  (Aaron Turner <synfinatic@gmail.com>)
Ответы Re: 10+hrs vs 15min because of just one index  (Aaron Turner <synfinatic@gmail.com>)
Список pgsql-performance
Aaron Turner wrote:
> So I'm trying to figure out how to optimize my PG install (8.0.3) to
> get better performance without dropping one of my indexes.

What about something like this:

begin;
drop slow_index_name;
update;
create index slow_index_name;
commit;
vacuum;

Matt

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

Предыдущее
От: Aaron Turner
Дата:
Сообщение: Re: 10+hrs vs 15min because of just one index
Следующее
От: Aaron Turner
Дата:
Сообщение: Re: 10+hrs vs 15min because of just one index