Re: Trigger performance

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Trigger performance
Дата
Msg-id 12241.1074785874@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Trigger performance  (pginfo <pginfo@t1.unisoftbg.com>)
Список pgsql-performance
pginfo <pginfo@t1.unisoftbg.com> writes:
> I was supprised that the pgsql trigger take ~8 sec. to insert this rows
> and the "C" trigger take ~ 17 sec.

The reason is that plpgsql caches the plan for the invoked SELECT,
whereas the way you coded the C function, it's re-planning that SELECT
on every call.

            regards, tom lane

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

Предыдущее
От: postgres@countup.de
Дата:
Сообщение: Function & Update/Insert Problem and Performance
Следующее
От: pginfo
Дата:
Сообщение: Re: Trigger performance