Is there any way of forcibly kill a go routine? I have a function that allows users to input Lua code that will be executed on the server, and the user could potentially send in a infinite loop. I can't stop the routine by a channel, as the execution of the lua code is blocking.
I'm using Gopher lua (found here: https://github.com/yuin/gopher-lua)