Re: Newbie help with Apache2::Request configuration

2006-01-02 Thread Jeff
Original Message From: Philip M. Gollucci [EMAIL PROTECTED] To: Jeff Armstrong [EMAIL PROTECTED] Cc: mod_perl List modperl@perl.apache.org Subject: Re:Newbie help with Apache2::Request configuration Date: Sun Jan 01 2006 21:01:39 My apologies for being a dumbo, your

Re: Strange test results

2006-01-02 Thread Perrin Harkins
On Fri, 2005-12-30 at 16:57 -1000, Beau E. Cox wrote: 3) Configuration: Apache 2.3 (svn trunk): I think that's the issue. Apache 2.3 is not working yet, AFAIK, although you could try the latest mod_perl from svn. - Perrin

Re: Adding customs httpd.conf data in mod_perl 2.0

2006-01-02 Thread Perrin Harkins
On Fri, 2005-12-30 at 11:30 -0800, Curtis Poe wrote: We're hoping to avoid bundling Apache2 because that would contradict the design goal. Specifically, if someone has an existing mod_perl 1, mod_perl 2, FastCGI or other server, we'd like things to, as much as possible, play nicely with

Why is my apache parent process growing...

2006-01-02 Thread Len Kranendonk
Happy2006 everyone, I'm running Apache/2.0.54,mod_perl/2.0.1, Perl/v5.8.7 on FreeBSD 6.0. Right after starting apache (with preloading the needed perl modules) the httpd root process is about 40MB. After several days it has grown to over 100MB. I'm using Apache2::SizeLimit to kill of

Re: Why is my apache parent process growing...

2006-01-02 Thread Frank Wiles
On Mon, 2 Jan 2006 20:34:42 +0100 Len Kranendonk [EMAIL PROTECTED] wrote: Happy 2006 everyone, I'm running Apache/2.0.54, mod_perl/2.0.1, Perl/v5.8.7 on FreeBSD 6.0. Right after starting apache (with preloading the needed perl modules) the httpd root process is about 40MB. After several

Re: Why is my apache parent process growing...

2006-01-02 Thread Perrin Harkins
On Mon, 2006-01-02 at 20:34 +0100, Len Kranendonk wrote: Right after starting apache (with preloading the needed perl modules) the httpd root process is about 40MB. After several days it has grown to over 100MB. How are you measuring this? My understanding is that the parent process is not

Re: Why is my apache parent process growing...

2006-01-02 Thread Len Kranendonk
Do you have any globals or other shared information that grows very large? Do you read in any large data sets either from a database or a file into the application all at once? We're using a global %session hash, which is undef 'fed when the session is closed. I'm not reading in large data

Re: Why is my apache parent process growing...

2006-01-02 Thread Perrin Harkins
On Mon, 2006-01-02 at 21:48 +0100, Len Kranendonk wrote: We're using a global %session hash, which is undef 'fed when the session is closed. I'm not reading in large data sets, but even if I did that should grow the child process, not the parent process, right ? Right. The application

Re: Why is my apache parent process growing...

2006-01-02 Thread Len Kranendonk
How are you measuring this? top, or ps aux and watch the RSS column (the real memory (resident set) size of the process (in 1024 byte units)). A sample top output: PID USERNAME PRI NICE SIZERES STATETIME WCPUCPU COMMAND 87075 www40 178M 174M accept 0:32

Re: Why is my apache parent process growing...

2006-01-02 Thread Philip M. Gollucci
Perrin Harkins wrote: On Mon, 2006-01-02 at 21:48 +0100, Len Kranendonk wrote: We're using a global %session hash, which is undef 'fed when the session is closed. I'm not reading in large data sets, but even if I did that should grow the child process, not the parent process, right ? Right.

Re: Why is my apache parent process growing...

2006-01-02 Thread Len Kranendonk
Are you using IPC::SharedCache for your HTML::Template caching? No, I'm using the file_cache=1 option, which uses Storable (I believe).

[mp2] can't locate loadable object during make test

2006-01-02 Thread Mike Subelsky
1. Problem Description:Received the following error during make test. I have already installed the latest Bundle::Apache and verified that the ServerUtil package exists in one of the directories in @INC and is globally-readable and executable. waiting 120 seconds for server to start: ..[Fri Dec 30

Re: Why is my apache parent process growing...

2006-01-02 Thread Len Kranendonk
This doesn't really help you, but I don't notice the parent growing on any of my FreeBSD boxes doing a variety of things. So, most likely I'm doing something that you don't do Are you using ModPerl::Registry, because I still do.

Re: Why is my apache parent process growing...

2006-01-02 Thread Tina Mueller
On Mon, 2 Jan 2006, Len Kranendonk wrote: I'm running Apache/2.0.54, mod_perl/2.0.1, Perl/v5.8.7 on FreeBSD 6.0. Right after starting apache (with preloading the needed perl modules) the httpd root process is about 40MB. After several days it has grown to over 100MB. what would be

Re: Why is my apache parent process growing...

2006-01-02 Thread Philip M. Gollucci
i recently made a memory bench with a self-compiled apache 1.33 that showed that every request (of a mod_perl-handler that just outputs content-type) added a small amount of memory to the child process; i haven't watched the parent process, though. That would imply a memory leak . --

Re: Why is my apache parent process growing...

2006-01-02 Thread Perrin Harkins
On Mon, 2006-01-02 at 22:04 +0100, Len Kranendonk wrote: How are you measuring this? top, or ps aux and watch the RSS column (the real memory (resident set) size of the process (in 1024 byte units)). Okay, my other guess then is that your parent process really uses this much memory at

Re: [mp2] can't locate loadable object during make test

2006-01-02 Thread Philip M. Gollucci
Mike Subelsky wrote: 1. Problem Description: Received the following error during make test. I have already installed the latest Bundle::Apache and verified that the ServerUtil package exists in one of the directories in @INC and is globally-readable and executable. You want

Re: Newbie help with Apache2::Request configuration

2006-01-02 Thread Philip M. Gollucci
Jeff wrote: Thanks for all that - I will work through it! I don't know I why I didn't think to say this sooner, but Apache2::Cookie is actually a subclass of APR::Request::Cookie if that helps any -- Love is not the

Re: [mp2] can't locate loadable object during make test

2006-01-02 Thread Randy Kobes
On Mon, 2 Jan 2006, Mike Subelsky wrote: 1. Problem Description: Received the following error during make test. I have already installed the latest Bundle::Apache and verified that the ServerUtil package exists in one of the directories in @INC and is globally-readable and executable.

Re: Newbie help with Apache2::Request configuration

2006-01-02 Thread Philip M. Gollucci
One other thing, none of the SEE ALSO links work :( Fixed in r365492 and will be part of the 2.07 docs -- Love is not the one you can picture yourself marrying, but the one you can't picture the rest of your life

[mp2] bb output filter that changes content length

2006-01-02 Thread Beau E. Cox
Hi all - I am trying to change the content-length in an output filter, following the example in the mp2 docs: http://perl.apache.org/docs/2.0/user/handlers/filters.html#Setting_the_Content_Length_Header_in_Request_Output_Filters I have copied the example _exactly_, except: - use $f-ctx

Re: [Fwd: Re: Apache2::Cookies - getting all names]

2006-01-02 Thread Philip M. Gollucci
Fixed in r365530 Apologies for the cross post, but this thread started on [EMAIL PROTECTED] Love is not the one you can picture yourself marrying, but the one you can't picture the rest of your life without. It takes a

Action vs Interaction

2006-01-02 Thread Foo Ji-Haw
Quick tip from the Net: 2 different styles of expressing the same thing: rect.moveLeft: 25 Down: 30 vs Point p = rect.getLocation(); rect.setLocation( p.X() - 25, p.Y() + 30 );

Re: Action vs Interaction

2006-01-02 Thread Foo Ji-Haw
Apologies. Sent to the wrong audience. :P

svn commit: r365520 [2/2] - in /perl/modperl/trunk: ModPerl-Registry/lib/ModPerl/ bin/ lib/ lib/APR/ lib/Apache2/ lib/Bundle/ lib/ModPerl/ src/modules/perl/ xs/ xs/APR/APR/ xs/APR/Base64/ xs/APR/Briga

2006-01-02 Thread pgollucci
Modified: perl/modperl/trunk/xs/APR/IpSubnet/APR__IpSubnet.h URL: http://svn.apache.org/viewcvs/perl/modperl/trunk/xs/APR/IpSubnet/APR__IpSubnet.h?rev=365520r1=365519r2=365520view=diff == ---