Re: HOT for PostgreSQL 8.3

Поиск
Список
Период
Сортировка
От Merlin Moncure
Тема Re: HOT for PostgreSQL 8.3
Дата
Msg-id b42b73150702071352u7f50a6d6u66bdba8e3d83acd5@mail.gmail.com
обсуждение исходный текст
Ответ на Re: HOT for PostgreSQL 8.3  ("Joshua D. Drake" <jd@commandprompt.com>)
Список pgsql-hackers
On 2/7/07, Joshua D. Drake <jd@commandprompt.com> wrote:
> Simon Riggs wrote:
> > Heap Only Tuples ("HOT") is a simplification of earlier proposals for
> > improving the way the server handles frequent updates, based upon what's
> > been learned and feedback received.

> Uhmmm... how often is that the case? Don't get me wrong, bravo but that
> seems a rather large limitation.
>
> Considering it, this would certainly be a boon in web space where you
> have things like Rails doing:

HOT is great for tables that are updated frequently via triggers or
cron right?  so it this eliminate the need to vacuum foo following
executing:
update foo set v =1 where id =1;
where v is not an index, right?

if so, it would be great all kinds of things, especially
materialization techniques.  or any situation where a table is updated
so frequently autovac can't keep up.  I can think of tons of places
where this would be useful.

merlin


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

Предыдущее
От: "Joshua D. Drake"
Дата:
Сообщение: Re: HOT for PostgreSQL 8.3
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Status of autovacuum and the sporadic stats failures ?