I have full user information in a Lua module written in C. User data has a __gc()metamethod that is called by the garbage collector. Does lua interpreter provide free user data memory after the call, __gc()or do I need it free()internally __gc()?
source
share