Re: Is Patch Ok for deferred trigger disk queue?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Is Patch Ok for deferred trigger disk queue?
Дата
Msg-id 17776.1057009101@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Is Patch Ok for deferred trigger disk queue?  (Stephan Szabo <sszabo@megazone23.bigpanda.com>)
Ответы Re: Is Patch Ok for deferred trigger disk queue?  (Stuart <deststar@blueyonder.co.uk>)
Список pgsql-hackers
Stephan Szabo <sszabo@megazone23.bigpanda.com> writes:
> As a side question, it looks to me that the code stores the first trigger
> records in memory and then after some point starts storing all new records
> on disk.  Is this correct?  I'd wonder if that's really what you want in
> general, since I'd think that the earliest ones are the ones you're least
> likely to need until end of transaction (or set constraints in the fk
> case) whereas the most recent ones are possibly going to be immediate
> triggers which you're going to need as soon as the statement is done.

Good point.  It would be better to push out stuff from the head of the
queue, hoping that stuff near the end might never need to be written
at all.
        regards, tom lane


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

Предыдущее
От: Stephan Szabo
Дата:
Сообщение: Re: Is Patch Ok for deferred trigger disk queue?
Следующее
От: "Maksim Likharev"
Дата:
Сообщение: Share state ( allocated memory ) across two C functions...