On Fri, Apr 22, 2016 at 4:50 PM, Laurent Faillie <l_faillie@yahoo.com> wrote:
> So, if I have a long running thread, it will block others to run as
well.
Only if the thread runs pure Lua without C/Lua transitions (that includes calling Lua's standard library functions) and never does string/table manipulations. I doubt your "main thread" is like that.