lua-users home
lua-l archive

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


> > Could you tell us how many available memory had this machine? This
> > will affect how often the garbage collector must be activated.
> 
> 1Gb.

But note that available memory does not affect how often the Lua garbage
collector is activated. Lua does not run the collector when it is out of
memory, but according to how much it uses memory.


-- Roberto