Re: how many record versions

Поиск
Список
Период
Сортировка
От Bruno Wolff III
Тема Re: how many record versions
Дата
Msg-id 20040523155237.GB25716@wolff.to
обсуждение исходный текст
Ответ на how many record versions  (David Garamond <lists@zara.6.isreserved.com>)
Список pgsql-general
On Sun, May 23, 2004 at 02:44:31 +0700,
  David Garamond <lists@zara.6.isreserved.com> wrote:
> begin;
> update t set val=val+1; -- 1000 times
> commit;
>
> How many record versions does it create? 1 or 1000? I'm implementing a
> banner counter which is incremented at least 2-3 millions a day. I
> thought I'd cheat by only commiting after every few minutes. Would that
> work or would I still create as many record versions?

You might be better off keeping the counter in its own table and vacuuming
that table very often. It is unlikely that holding transactions open
for several minutes is a good idea. Also if you are doing multiple updates
in a single transaction, you are still going to get multiple rows.

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

Предыдущее
От: Bruno Wolff III
Дата:
Сообщение: Re: DB design opinions - Foreign Key usage
Следующее
От: Tom Lane
Дата:
Сообщение: Re: how many record versions