Re: svn commit: r1469852 - /httpd/httpd/trunk/docs/manual/mod/mod_lua.xml

2013-04-25 Thread Daniel Gruno
On 04/23/2013 11:49 PM, Guenter Knauf wrote: Hi Daniel, On 20.04.2013 08:58, Daniel Gruno wrote: Thanks for the invaluable help, it's really good knowing there's someone else taking such an interest in this project! :) I hope that someday we can shed mod_lua of its experimental status and

Re: svn commit: r1469852 - /httpd/httpd/trunk/docs/manual/mod/mod_lua.xml

2013-04-25 Thread Daniel Gruno
On 04/24/2013 12:18 AM, Guenter Knauf wrote: On 23.04.2013 23:49, Guenter Knauf wrote: Hi Daniel, On 20.04.2013 08:58, Daniel Gruno wrote: Thanks for the invaluable help, it's really good knowing there's someone else taking such an interest in this project! :) I hope that someday we can shed

Re: svn commit: r1469852 - /httpd/httpd/trunk/docs/manual/mod/mod_lua.xml

2013-04-25 Thread Daniel Gruno
On 04/25/2013 02:46 AM, Guenter Knauf wrote: On 24.04.2013 00:18, Guenter Knauf wrote: and two more things: 1) I found with my script that there is also a table apr_table created with methods get and set but its not yet documented 2) I wonder why we do export some functions from mod_lua, and

Re: svn commit: r1469852 - /httpd/httpd/trunk/docs/manual/mod/mod_lua.xml

2013-04-25 Thread Daniel Gruno
On 04/25/2013 11:54 AM, Daniel Gruno wrote: On 04/24/2013 12:18 AM, Guenter Knauf wrote: On 23.04.2013 23:49, Guenter Knauf wrote: Hi Daniel, On 20.04.2013 08:58, Daniel Gruno wrote: Thanks for the invaluable help, it's really good knowing there's someone else taking such an interest in this

Default value of LuaScope in trunk mod_lua

2013-04-25 Thread Daniel Gruno
Hi dev@ people, I'm thinking of changing the default value of LuaScope in trunk to 'thread', as the current default, 'once', has a significant performance impact (as I explained at ApacheCon). As Lua's garbage collector is quite awesome (it's virtually impossible to leak memory unless you

New module added: mod_proxy_msrpc

2013-04-25 Thread modules.apache.org
Hello, A new module has been created and is awaiting approval. If you are a modules.apache.org administrator, please check whether this module passes the requirements of an httpd module and approve it if so. Author: micha Module name: mod_proxy_msrpc Tags:proxying License:

New RewriteMap Help/Suggestions

2013-04-25 Thread Jim Riggs
I am in the process of preparing a patch to add a new RewriteMap type and could use some input from all of you on the best implementation. What I am creating is basically a clone of the txt map type, except that each line is a regexp followed by a replacement (with potential back-references).

Re: Default value of LuaScope in trunk mod_lua

2013-04-25 Thread Eric Covener
On Thu, Apr 25, 2013 at 10:24 AM, Daniel Gruno rum...@cord.dk wrote: Hi dev@ people, I'm thinking of changing the default value of LuaScope in trunk to 'thread', as the current default, 'once', has a significant performance impact (as I explained at ApacheCon). As Lua's garbage collector is

Re: Default value of LuaScope in trunk mod_lua

2013-04-25 Thread Daniel Gruno
On 04/25/2013 04:41 PM, Eric Covener wrote: On Thu, Apr 25, 2013 at 10:24 AM, Daniel Gruno rum...@cord.dk wrote: Hi dev@ people, I'm thinking of changing the default value of LuaScope in trunk to 'thread', as the current default, 'once', has a significant performance impact (as I explained

Re: Default value of LuaScope in trunk mod_lua

2013-04-25 Thread Eric Covener
I say go for it, it's an experimental module in 2.4.

Re: New RewriteMap Help/Suggestions

2013-04-25 Thread Yehuda Katz
On Thu, Apr 25, 2013 at 10:35 AM, Jim Riggs apache-li...@riggs.me wrote: So, I have created a crude, working proof-of-concept of this. It basically copies all of the functionality of the txt maps, including the cache, but in the lookup_map_regexpfile() function, it compiles the regexp for each