From fc9134addf420d710c5a68bee5c1187ec5d17b74 Mon Sep 17 00:00:00 2001 From: Daniel Gruno Date: Tue, 31 Jul 2012 14:57:48 +0000 Subject: [PATCH] Remove [max|min max] from the LuaScope syntax, since the 'server' scope is not implemented yet. Add the 'thread' value to the list of possible scopes git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1367592 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_lua.xml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/manual/mod/mod_lua.xml b/docs/manual/mod/mod_lua.xml index dd320edb82..83dc832682 100644 --- a/docs/manual/mod/mod_lua.xml +++ b/docs/manual/mod/mod_lua.xml @@ -416,8 +416,8 @@ end LuaScope -One of once, request, conn -- default is once -LuaScope once|request|conn [max|min max] +One of once, request, conn, thread -- default is once +LuaScope once|request|conn|thread LuaScope once server configvirtual host directory.htaccess @@ -436,6 +436,8 @@ end request scoped.
conn:
Same as request but attached to the connection_rec
+
thread:
Use the interpreter for the lifetime of the thread + handling the request (only available with threaded MPMs).