lua-users home
lua-l archive

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


On Mon, Jan 02, 2012 at 08:52:11PM -0700, HyperHacker wrote:
<snip>
> Also, requests can only affect eachother like that if one Lua state is
> serving several requests. Start up a new Lua state in a new OS thread
> for each request, and they no longer have to share a string table.

IME, that is definitely not the common use case for Lua. The typical
framework juggles multiple requests per global state.