Re: converting CGI scripts to mod_perl and memory use...

2000-05-18 Thread Stas Bekman

On Wed, 17 May 2000, Doug MacEachern wrote:

 On Wed, 17 May 2000, Dave DeMaagd wrote:
 
  I'm in the midst of converting a script I wrote in a CGI environment 
  to mod_perl (using Apache::Registry).  The scripts are running fine
  (after a little tweaking to get rid of globals and whatnot), but I am
  still looking for more ways to keep memory consumption under control,
  and for ways to check to see /where/ it's going out the window when it
  is.   
 
 this message from last night was intended to remind of one way to do
 that..
 
 Date: Tue, 16 May 2000 23:13:19 -0700 (PDT)
 From: Doug MacEachern [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: [ANNOUNCE] B-Size-0.04
 
 if you're not familar with B::Size, it was written a while back to answer
 the question 'why are my httpds so damn BIG?'  there are hooks in
 Apache::Status to measure the size of global/lexical variables and the
 syntax tree.  this is a debugging/educational module, for best results,
 run httpd in -X mode.  and, do not enable on a production server, the code
 to measure the syntax tree can burn lots of cpu.

And as usual the link:
http://perl.apache.org/guide/performance.html#Measuring_the_Memory_Usage_of_Su

_
Stas Bekman  JAm_pH --   Just Another mod_perl Hacker
http://stason.org/   mod_perl Guide  http://perl.apache.org/guide 
mailto:[EMAIL PROTECTED]   http://perl.org http://stason.org/TULARC
http://singlesheaven.com http://perlmonth.com http://sourcegarden.org




converting CGI scripts to mod_perl and memory use...

2000-05-17 Thread Dave DeMaagd

I'm in the midst of converting a script I wrote in a CGI environment 
to mod_perl (using Apache::Registry).  The scripts are running fine
(after a little tweaking to get rid of globals and whatnot), but I am
still looking for more ways to keep memory consumption under control,
and for ways to check to see /where/ it's going out the window when it
is.   

Thanks!

-- 
Dave DeMaagd - [EMAIL PROTECTED] - http://www.spinynorm.net
I don't have a solution, but I admire your problem.
SysAdmin/Programmer - TheImageGroup - ===|:=P



Re: converting CGI scripts to mod_perl and memory use...

2000-05-17 Thread Doug MacEachern

On Wed, 17 May 2000, Dave DeMaagd wrote:

 I'm in the midst of converting a script I wrote in a CGI environment 
 to mod_perl (using Apache::Registry).  The scripts are running fine
 (after a little tweaking to get rid of globals and whatnot), but I am
 still looking for more ways to keep memory consumption under control,
 and for ways to check to see /where/ it's going out the window when it
 is.   

this message from last night was intended to remind of one way to do
that..

Date: Tue, 16 May 2000 23:13:19 -0700 (PDT)
From: Doug MacEachern [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: [ANNOUNCE] B-Size-0.04

if you're not familar with B::Size, it was written a while back to answer
the question 'why are my httpds so damn BIG?'  there are hooks in
Apache::Status to measure the size of global/lexical variables and the
syntax tree.  this is a debugging/educational module, for best results,
run httpd in -X mode.  and, do not enable on a production server, the code
to measure the syntax tree can burn lots of cpu.

...