Re: fix residual space in memory block

Поиск
Список
Период
Сортировка
От Karel Zak
Тема Re: fix residual space in memory block
Дата
Msg-id Pine.LNX.3.96.1000705231351.9360A-100000@ara.zf.jcu.cz
обсуждение исходный текст
Ответ на Re: fix residual space in memory block  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Re: fix residual space in memory block
Список pgsql-patches
On Wed, 5 Jul 2000, Tom Lane wrote:

> Karel Zak <zakkr@zf.jcu.cz> writes:
> >  Here is the patch that create from residual space in memory block new free
> > chunks. We already discussed about it during 7.0. --- I owe this patch :-)
>
> Right, I was going to ask you for that.  Will apply it.
>
> >  My previous implementation create _one_ chunk only. Now I implement it
> > in do{}while, and if residual space is large, it create more free chunks.
>
> I think that is a waste of cycles.  One chunk will get most of the
> problem without much processing work...
>

 I don't know how much spend time one or two cycle, but IMHO it is not
bad cost, because new block is not allocated very often (and in your new
in AllocSet it depend on context initialization) and if we implement it
without cycle we still have residual and never used space in memory. For
example if residual space will 400b new _one_ chunk reduce it to half
only...

 We will see how much memory is residual in MemoryContextCheck() very
well (and you will see that I'm right :-)))

 If I'm writing to you Tom --- do you want fill code in MemoryContextCheck()
yourself? --- or I can a little rewrite my function that I sent to you and
we can use it.

Thanks.
                Karel



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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: Patch for Linux-IA64
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Re: fix residual space in memory block