Re: nice mod_perl statistics to share

2002-07-05 Thread Ged Haywood
Hi all, On 5 Jul 2002, Dave Hodgkinson wrote: > Matt Sergeant <[EMAIL PROTECTED]> writes: > > > On 5 Jul 2002, Dave Hodgkinson wrote: > > > > > RH comes as default with mod_perl compiled as a DSO. > > > > No it does not - it doesn't install Apache by default. > > Come again? RH offers seve

RE: XML::Xalan, Perl modules and bootstrapping... :-s

2002-07-05 Thread Jim Morrison [Mailinglists]
[Marked with "" ] > > # > Terminating inside exit handler.. > Inside terminate().. > # This is bad. Modules should not warn unless you ask them for debugging information. -- H

Apache::Request $apr->param; problems.

2002-07-05 Thread Wes Cravens
I have a subrouting which returns references to %r_info, %r_headers_hash and @r_headers_list. Part of %r_info is params from Apache::Request opbject $arq. my %params; foreach ($apr->param) { $params{$_} = $apr->param{$_); } $r_info{'params'} = \%params, however if this routine is called

Apache->print Timed Out

2002-07-05 Thread David Wheeler
Hi All, I'm seeing some strange behavior with IE/Mac OS Classic where pages aren't getting completely loaded and I'm seeing this message in the log error log: [Fri Jul 5 20:22:17 2002] [info] [client 192.168.1.1] mod_perl: Apache->print timed out Config: Apache/1.3.26 (Unix) mod_perl/1.27 mod

Re: Apache::Request $apr->param; problems.

2002-07-05 Thread darren chamberlain
* Wes Cravens <[EMAIL PROTECTED]> [2002-07-05 10:48]: > however if this routine is called more than once with the same $r > object then the second time there are no params. It's as if calling > $apr->param strips them off $r. That's not clever. I can't find > anything in the documentation that

Re: XML::Xalan, Perl modules and bootstrapping... :-s

2002-07-05 Thread Matt Sergeant
Jim Morrison [Mailinglists] wrote: > [Marked with "" ] (Try a real mail client ;-) > Interesting you should say that? I was under the impression that the C > version of Xalan was very quick? I am, in some cases running off 100 or > so transformations in one run, through quite complicated

RE: Apache::Request $apr->param; problems.

2002-07-05 Thread Wes Cravens
Fantastic... top marks for concise and useful answer of the month :-) Shame that the first paragraph of that link isn't in Programming Apache Modules...or (at least afaict) the perldoc's. Cheers, Wes > -Original Message- > From: darren chamberlain [mailto:[EMAIL PROTECTED]] > Sent: 05

Re: Apache::Request $apr->param; problems.

2002-07-05 Thread Geoffrey Young
> or check out Apache::RequestNotes/ you'll also want to check out using Apache::Request->instance() over Apache::Request->new() HTH --Geoff

RE: Apache::Request $apr->param; problems.

2002-07-05 Thread Wes Cravens
> > or check out Apache::RequestNotes/ > > > you'll also want to check out using Apache::Request->instance() over > Apache::Request->new() That is indeed the three second code fix that I implemented.

Re: [OT] Better Linux server platform: Redhat or SuSe?

2002-07-05 Thread Owen Scott Medd
I think the point is that you have complete non-trivial applications being written in Perl. Success is measured in application adoption, not in elegance. I've worked many places that produced very elegant code, however all of those places no longer exist. You need more than "cool" code to m

[mod_perl2] PerlChildInitHandlers with multiple (Win32) threads

2002-07-05 Thread Peter Rothermel
greetings, I'm looking for the documentation that describes how PerlChildInitHandlers work with multiple threads on Win32 platforms. Here's a specific question: I have the following in my httpd.conf: ThreadsPerChild 10 MaxRequestsPerChild 0 PerlChildInitHandler Apache::foo->genkey

Re: [mod_perl2] PerlChildInitHandlers with multiple (Win32) threads

2002-07-05 Thread Stas Bekman
Peter Rothermel wrote: > greetings, > > I'm looking for the documentation that describes how > PerlChildInitHandlers work with multiple threads on > Win32 platforms. > > Here's a specific question: > > I have the following in my httpd.conf: > > > ThreadsPerChild 10 > MaxRequestsPerChild 0 >

Re: [mod_perl2] PerlChildInitHandlers with multiple (Win32) threads

2002-07-05 Thread Peter Rothermel
Stas Bekman wrote: > Peter Rothermel wrote: > > > > > PerlChildInitHandler Apache::foo->loadkey > > > > Will the genkey method get execute at the > > initialization of each thread? > > Apache doesn't provide such a hook yet. May be in the future. > > child_init is for child process init, not thre

Re: [mod_perl2] PerlChildInitHandlers with multiple (Win32) threads

2002-07-05 Thread David Dyer-Bennet
Peter Rothermel <[EMAIL PROTECTED]> writes: > Stas Bekman wrote: > > > Peter Rothermel wrote: > > > > > > > > PerlChildInitHandler Apache::foo->loadkey > > > > > > Will the genkey method get execute at the > > > initialization of each thread? > > > > Apache doesn't provide such a hook yet. May b

Re: [mod_perl2] PerlChildInitHandlers with multiple (Win32) threads

2002-07-05 Thread Peter Rothermel
David Dyer-Bennet wrote: > Peter Rothermel <[EMAIL PROTECTED]> writes: > > > Stas Bekman wrote: > > > > > Peter Rothermel wrote: > > > > > > > > > > > PerlChildInitHandler Apache::foo->loadkey > > > > > > > > Will the genkey method get execute at the > > > > initialization of each thread? > > > >

Re: XML::Xalan, Perl modules and bootstrapping... :-s

2002-07-05 Thread Emmet Caulfield
On Fri, 5 Jul 2002, Matt Sergeant wrote: > I do still wonder why people get the impression you were given - it's > widely known that the C version of Xalan is appallingly slow - slower > even than it's Java counterpart. Now that's slow! I haven't benchmarked the available XSLT processors in a wh

Re: [mod_perl2] PerlChildInitHandlers with multiple (Win32) threads

2002-07-05 Thread Stas Bekman
Peter Rothermel wrote: > Stas Bekman wrote: > > >>Peter Rothermel wrote: >> >> >>>PerlChildInitHandler Apache::foo->loadkey >>> >>>Will the genkey method get execute at the >>>initialization of each thread? >> >>Apache doesn't provide such a hook yet. May be in the future. >> >>child_init is for