lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> [...] 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