lua-users home
lua-l archive

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


> We are using LUA in our current game, but we are currently 
> experiencing horrible memory leaks with it.

Are you sure it is a real leak? Maybe your program is actually using
more memory each cycle? Remember that garbage collection only collects
what is completely unacessible. Sometimes we are hooking new data into a
persistent structure without noticing, and then this new data will never
be collected...

-- Roberto