From 284dc4ee6ccf69b0552b8fad91bd1fe86435a8da Mon Sep 17 00:00:00 2001 From: Daniel Gruno Date: Sun, 5 Aug 2012 22:24:17 +0000 Subject: [PATCH] Fix some typos and wordings git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1369696 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_lua.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/manual/mod/mod_lua.xml b/docs/manual/mod/mod_lua.xml index dbeec10810..03afd9f01e 100644 --- a/docs/manual/mod/mod_lua.xml +++ b/docs/manual/mod/mod_lua.xml @@ -649,8 +649,8 @@ end
server:
This one is different than others because the server scope is quite long lived, and multiple threads - will have the same server_rec. To accommodate this - server scoped interpreter are stored in an apr + will have the same server_rec. To accommodate this, + server scoped Lua states are stored in an apr resource list. The min and max arguments specify the minimum and maximum number of Lua states to keep in the pool.
@@ -665,7 +665,7 @@ end maximum performance. While the thread scope will provide the fastest responses, the server scope will use less memory, as states are pooled, allowing f.x. 1000 threads to share only 100 Lua states, - thus using only 10% of the memory requried by the thread scope. + thus using only 10% of the memory required by the thread scope.

@@ -682,8 +682,8 @@ end

This directive matches a uri pattern to invoke a specific handler function in a specific file. It uses PCRE regular expressions to match the uri, and supports interpolating - match groups into both the file path and the function name - be careful writing your regular expressions to avoid security + match groups into both the file path and the function name. + Be careful writing your regular expressions to avoid security issues.

Examples: -- 2.40.0