Re: PerlSetVar string value - no \n translation?

2001-10-27 Thread Louis LeBlanc
On 10/28/01 01:15 PM, Stas Bekman sat at the `puter and typed: > Louis LeBlanc wrote: > > > Hey all. I don't know how many people are lurking here, since the > > list seems to be very light traffic (the lightest of 8 I sub to), but > > > That's because mod_perl has no bugs :) so we talk about

Re: PerlSetVar string value - no \n translation?

2001-10-27 Thread Stas Bekman
Louis LeBlanc wrote: > Hey all. I don't know how many people are lurking here, since the > list seems to be very light traffic (the lightest of 8 I sub to), but That's because mod_perl has no bugs :) so we talk about the weather mostly. > I have a question regarding PerlSetVar and strings. >

Re: ApacheBench says my site is unstable?

2001-10-27 Thread Stas Bekman
Philip Mak wrote: > I'm using ApacheBench to perform stress testing on my mod_perl server. > It's not always working, though. Observe the following two runs: (first is > Broken pipe; second has some failed requests) > > [pmak@sg1 bin]$ ./ab -n 1000 -c 10 http://65.119.108.120:8080/ > This is Apa

Re: PerlSetVar string value - no \n translation?

2001-10-27 Thread Louis LeBlanc
On 10/27/01 12:01 PM, Steven Lembark sat at the `puter and typed: > > . . . > > Quick hack for the moment: > > PerlSetVar Blah "A long line withHTMLBreaks In It"; > > that or set the thing and use: > > s//\n/gs; > > somewhere in the code. Pretty cool. I am already doing a hash subst

Re: Benchmarks on server cluster

2001-10-27 Thread Stas Bekman
Issac Goldstand wrote: > I've just recieved an OK to do some Benchmarks on a server cluster of > 16+1 (master) dual 450 Mhz machines (master node is dual 650). I plan > on doing benchmarks and comparing perfornance for the following setups, > so far: > > > > Server cluster using httpd p

ApacheBench says my site is unstable?

2001-10-27 Thread Philip Mak
I'm using ApacheBench to perform stress testing on my mod_perl server. It's not always working, though. Observe the following two runs: (first is Broken pipe; second has some failed requests) [pmak@sg1 bin]$ ./ab -n 1000 -c 10 http://65.119.108.120:8080/ This is ApacheBench, Version 1.3c <$Revisi

Re: PerlSetVar string value - no \n translation?

2001-10-27 Thread Steven Lembark
-- Louis LeBlanc <[EMAIL PROTECTED]> > Hey all. I don't know how many people are lurking here, since the > list seems to be very light traffic (the lightest of 8 I sub to), but > I have a question regarding PerlSetVar and strings. > > Here is what I'm trying to do: > In httpd.conf: > > . .

PerlSetVar string value - no \n translation?

2001-10-27 Thread Louis LeBlanc
Hey all. I don't know how many people are lurking here, since the list seems to be very light traffic (the lightest of 8 I sub to), but I have a question regarding PerlSetVar and strings. Here is what I'm trying to do: In httpd.conf: . . . PerlSetVar MailMsg "Access Report \ T

Re: [OT] P2EE Redux was: Excellent article on Apache/mod_perl at eToys

2001-10-27 Thread Joe Brenner
> At 02:28 PM 10/23/2001 -0400, Perrin Harkins wrote: > >Stephen Adkins wrote: > >> If no one suggests an appropriate list, I propose starting a "p2ee" group > >Can I just say that P2EE is a horrible, horrible name? It includes the > >Java version number (when is J3EE coming out?), as well as

Re: Excellent article on Apache/mod_perl at eToys

2001-10-27 Thread Steven Lembark
> Exactly- the statically typed languages I am familiar with have a casting > mechanism to utterly subvert compile-time type checks. While static typing > allows better compile-time optimization, it's value as a debugging > mechanism is near the bottom of the list of advantages for engineering

Re: Excellent article on Apache/mod_perl at eToys

2001-10-27 Thread Joe Schaefer
Rob Nagler <[EMAIL PROTECTED]> writes: > Gunther wrote: > > If you do not have a strongly typed system, then when you break > > apart and rebuild another part of the system, Perl may very well not > > complain when a subtle bug comes up because of the fact that it is > > not strongly typed. Where