lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


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.

But, of course, you know better.

Cheers,
V.