Re: Killing a child process

1999-12-18 Thread Bill Moseley
At 09:02 PM 12/17/99 -0400, Eric L. Brine wrote: >Maybe a reaper is needed here? From perlipc: > >sub REAPER { >$waitedpid = wait; ># loathe sysV: it makes us not only reinstate ># the handler, but place it after the wait >$SIG{CHLD} = \&REAPER; >} >$SI

Re: Apache::Scoreboard - problem compiling

1999-12-18 Thread Stas Bekman
> I'm not strong in XS, so I hope someone will land me a helping hand > figuring this out :) > > Here's an error I get compiling Apache::Scoreboard (0.08): > > /usr/bin/perl -I/usr/lib/perl5/5.00503/i386-linux -I/usr/lib/perl5/5.00503 > /usr/lib/perl5/5.00503/ExtUtils/xsubpp -typemap > /usr/

KeepAlive and mod_perl

1999-12-18 Thread Stas Bekman
Lately I've received a few requests to document the KeepAlive directive and its implications on mod_perl behavior. >From what I see, mod_perl overrides the whatever settings you have in your config file and sets the KeepAlive to Off. I've tested it with KeepAlive On and KeepAliveTimeout of 15 se

Re: KeepAlive and mod_perl

1999-12-18 Thread rasmus
> Lately I've received a few requests to document the KeepAlive directive > and its implications on mod_perl behavior. > > From what I see, mod_perl overrides the whatever settings you have in your > config file and sets the KeepAlive to Off. I've tested it with KeepAlive > On and KeepAliveTimeou

Re: KeepAlive and mod_perl

1999-12-18 Thread Eric Cholet
On Sat, 18 Dec 1999, Stas Bekman wrote: > Lately I've received a few requests to document the KeepAlive directive > and its implications on mod_perl behavior. > > >From what I see, mod_perl overrides the whatever settings you have in your > config file and sets the KeepAlive to Off. I've tested i

Summary Re: KeepAlive and mod_perl

1999-12-18 Thread Stas Bekman
On Sat, 18 Dec 1999, Eric Cholet wrote: > On Sat, 18 Dec 1999, Stas Bekman wrote: > > Lately I've received a few requests to document the KeepAlive directive > > and its implications on mod_perl behavior. > > > > >From what I see, mod_perl overrides the whatever settings you have in your > > con

PerlChildInitHandler called twice on startup?

1999-12-18 Thread Owen Stenseth
How many times is PerlChildInitHandler suposed to be called on child startup? On my server startup (under httpd -X as well) I see two calls to it. I have wrapped my code so it does not do the initailization twice now but this kind of caught me by suprise. With a carp in my anonymous handler I se

Re: Summary Re: KeepAlive and mod_perl

1999-12-18 Thread Eric L. Brine
> GET / HTTP/1.0 > Connection: keep-alive > > ==> doesn't work! It worked for me! > GET /perl/test.pl HTTP/1.0 > Connection: keep-alive > > ==> doesn't work! Couldn't test since I don't have/know a mod_perl server, but I suspect it works because the previous test case worked for me. > HEAD /

Apache::Registry VS CGI deamon

1999-12-18 Thread Max Calvo
Gentlemen; I will be developing a web interface using MySQL or PostgreSQL. I have not decided on the database. I need your experts opinions and advices on the platform to use. I have read a lot about Apache::Registry and CGI.pm. What is the best platform for performance?? I need fast look ups to

Re: Apache::Registry VS CGI deamon

1999-12-18 Thread Eric L. Brine
> It is my understanding that Apache::Registry allows me to run CGI > scripts with out any modifications. Using this approach, Apache will > load the script into memory at startup. Whenever there is a request > for that script, it is already loaded and is executed on the fly with > out the nee

Embperl problem (newbie question?)

1999-12-18 Thread Ed Greenberg
Just trying out Embperl, and I discovered that (in my test of dynamic tables) the $maxrow and $maxcol variables are being set to defaults of 100 and 10 respectively and then obeyed, even though the $tabmode variable is set to 17. According to the documentation, these variables should only be

open 2 question

1999-12-18 Thread dreamwvr
hi, i am writing a program using perl and its open2 function as opposed to the open functions as this allows me to both read and write. but since i am only familiar with.. open (MYSTDIN, "myprog args|"); or open(MYSTDOUT, "| myprog args"); i am trying to get my mind around the concept of ope