Re: lua leaking memory badly
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: lua leaking memory badly
- From: Roberto Ierusalimschy <roberto@...>
- Date: 2002年5月29日 17:27:46 -0300
> 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