Comment by HexDecOctBin
11 days ago
> Lua excepted, with conditions
Where can I read more about this? Is Lua's garbage collector tuned for real-time operations?
11 days ago
> Lua excepted, with conditions
Where can I read more about this? Is Lua's garbage collector tuned for real-time operations?
You can build Lua to not do GC.
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...