[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: GC "survey"
- From: Roberto Ierusalimschy <roberto@...>
- Date: Tue, 27 Aug 2002 09:50:52 -0300
> [...] in my game, I have some big tables which I know are constant for
> quite a long time, thus candidates for being set as constant for GC,
> [...]
Those tables are well handled by a generational GC. Being "old", they will
be ignored by the regular GC.
> but will be unreferenced at some time in the future, and I know well
> when.
Is it unnaceptable to force one single full GC at that point?
-- Roberto