lua-users home
lua-l archive

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


>In case anyone cares, my goal here is a little server framework where
>each connected client can be handled by a separate lua thread.

If you use independent Lua states for each connection, you can use Lua off
the self; you don't need to compile the core to use locking, unless you want
client connections to communicate with each other.
--lhf