← Back to context Comment by PaulDavisThe1st 9 days ago You can build Lua to not do GC. 1 comment PaulDavisThe1st Reply aa-jv 9 days ago You don't have to build Lua to not do GC, you can just tell it how its GC heuristics are supposed to behave at runtime by setting the pause and multiplier variables - good treatise on how to do this at runtime is available here:https://www.lua.org/wshop18/Ierusalimschy.pdfAnd fine details about how to tune things for the optimal GC behaviour for your app:https://www.tutorialspoint.com/lua/lua_garbage_collection.ht...
aa-jv 9 days ago You don't have to build Lua to not do GC, you can just tell it how its GC heuristics are supposed to behave at runtime by setting the pause and multiplier variables - good treatise on how to do this at runtime is available here:https://www.lua.org/wshop18/Ierusalimschy.pdfAnd fine details about how to tune things for the optimal GC behaviour for your app:https://www.tutorialspoint.com/lua/lua_garbage_collection.ht...
You don't have to build Lua to not do GC, you can just tell it how its GC heuristics are supposed to behave at runtime by setting the pause and multiplier variables - good treatise on how to do this at runtime is available here:
https://www.lua.org/wshop18/Ierusalimschy.pdf
And fine details about how to tune things for the optimal GC behaviour for your app:
https://www.tutorialspoint.com/lua/lua_garbage_collection.ht...