Re: GTop gone missing ...

2003-06-30 Thread Perrin Harkins
On Fri, 2003-06-27 at 15:51, Nigel Hamilton wrote: > Some of my Apache children are growing to 100M+ ... I'm now trying > to track down GTop so I can install Apache::VMonitor so I can see where > all the RAM is going. You can find libgtop sources here: http://ftp.gnome.org/pub/gnome/source

Re: require'ing data files under mod_perl

2003-06-30 Thread Perrin Harkins
On Sat, 2003-06-28 at 15:08, Peter B. Ensch wrote: > Coding in plain CGI I've often require'd files containing > data in perl data-structures. The script may write to the > file (via Data::Dumper for example) allowing subsequent > invokations of the script to have access to the revised > data. I

Re: How big are your Apache kids?

2003-06-30 Thread Perrin Harkins
On Mon, 2003-06-30 at 15:44, Nigel Hamilton wrote: > Now I'm wondering how much more RAM I can save? The only thing you need to be concerned about is the amount of unshared memory in each process. If you don't know what I mean, read the tuning section in the docs. This is also covered in t

Re: Few Important Questions

2003-06-30 Thread Perrin Harkins
On Mon, 2003-06-30 at 17:00, Adi Fairbank wrote: > One reason I've heard is because of namespace security issues. Ie. if ISPs > allow all their users access to mod_perl on the same Apache server, then any > user can potentially interfere with/have access to other users' mod_perl > modules. Don't

Re: Few Important Questions

2003-06-30 Thread Adi Fairbank
On, or in the near vicinity of Wed, 18 Jun 2003 18:34:09 -0700 (PDT) Mustafa Tan <[EMAIL PROTECTED]> has thus spoken: > Another question is that, why hosting guys avoid using > mod_perl. Is it just because mod_perl is memory > hungry? > One reason I've heard is because of namespace security iss

[DIGEST] mod_perl digest 2003/06/16

2003-06-30 Thread jgsmith
-- mod_perl digest June 16, 2003 - June 29, 2003 -- Recent happenings in the mod_perl world... Features o mo

Re: How big are your Apache kids?

2003-06-30 Thread Ged Haywood
Hi there, On Mon, 30 Jun 2003, Nigel Hamilton wrote: > I recently managed to get the RAM consumption of my server under control. :) > Does anyone have a really lean and mean mod_perl, Apache configuration On the face of it 20Mb looks a bit heavy for mod_perl processes. But it depends so much

Re: mod_perl And Redirection

2003-06-30 Thread Geoffrey Young
> $r->headers_in->unset("Content-length"); > $r->header_out(Location => "$uri"); > $r->status(REDIRECT); > $r->send_http_header; > return REDIRECT; well, you shouldn't ever mess with $r->status - that messes up Apache's internal bookkeeping. and don't send headers o

[RFC] web-messaging application for mod_perl

2003-06-30 Thread Adi Fairbank
Apache::WebMessaging I am about ready to release an intraserver web-messaging application for mod_perl. A brief description of the app follows; I'd like to hear some comments from the mod_perl/Perl/P5EE community on: * is there anything like this already out there? * namespace suggestions (if

How big are your Apache kids?

2003-06-30 Thread Nigel Hamilton
Hi, I recently managed to get the RAM consumption of my server under control. It had nothing to do with mod_perl ... the culprit was my ISP's config script loading in *tons* of extra modules conditionally. Three versions of mod_php + mod_python all helped to contribute to turn the

STDF Binary Datalog Reader dk@testedgeinc.com

2003-06-30 Thread D George Jakubec
I got an STDF version 4.0 binary datalog file reader from http://www.datalogs.org that translates those nasty binary files to plain ASCII text files so that I can see what is inside. The reader consists of some C code and API library routines. The reader was then wrapped within a perl code and als