Re: Insertions slower than Updates?

Поиск
Список
Период
Сортировка
От Kevin Grittner
Тема Re: Insertions slower than Updates?
Дата
Msg-id 4F4246E702000025000458F7@gw.wicourts.gov
обсуждение исходный текст
Ответ на Insertions slower than Updates?  (Ofer Israeli <oferi@checkpoint.com>)
Ответы Re: Insertions slower than Updates?  (Ofer Israeli <oferi@checkpoint.com>)
Список pgsql-performance
Ofer Israeli <oferi@checkpoint.com> wrote:

> INSERT should be cheaper than UPDATE due to only dealing with one
> record instead of two.

... unless the UPDATE is a HOT update, in which case the indexes
don't need to be touched.

> Anyone have any ideas on why the empty db is giving worse
> results??

Besides the HOT updates being fast, there is the issue of having
space already allocated and ready for the database to use, rather
than needing to make calls to the OS to create and extend files as
space is needed.

-Kevin

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

Предыдущее
От: Ofer Israeli
Дата:
Сообщение: Insertions slower than Updates?
Следующее
От: Ofer Israeli
Дата:
Сообщение: Re: Insertions slower than Updates?