Apache::Benchmark::POE

2005-03-25 Thread David Davis
Here it is... http://teknikill.net/files/Apache-Backend-POE-0.01.tar.gz -- David Davis Perl Programmer http://teknikill.net/ Try CPAN Suggest! http://cpan.teknikill.net/

Re: KILL-ing my POE app

2005-03-25 Thread Bas Schulte
Martijn, On vrijdag, maa 25, 2005, at 23:19 Europe/Amsterdam, Martijn van Beers wrote: On Fri, 2005-03-25 at 23:00 +0100, Bas Schulte wrote: Hi, my POE app install a handler for sigint ans sigkill ($poe_kernel->sig(INT => 'sigint');, $poe_kernel->sig(KILL => 'sigint');)), this works fine when I

Re: KILL-ing my POE app

2005-03-25 Thread Martijn van Beers
On Fri, 2005-03-25 at 23:00 +0100, Bas Schulte wrote: > Hi, > > my POE app install a handler for sigint ans sigkill > ($poe_kernel->sig(INT => 'sigint');, $poe_kernel->sig(KILL => > 'sigint');)), this works fine when I start the app and hit ctrl-c. > However, when I kill it using kill on the

Re: KILL-ing my POE app

2005-03-25 Thread David Davis
You can't trap SIGKILL, but you can trap SIGTERM. Change it to TERM and try kill -TERM On Fri, 25 Mar 2005 23:00:46 +0100, Bas Schulte <[EMAIL PROTECTED]> wrote: > Hi, > > my POE app install a handler for sigint ans sigkill > ($poe_kernel->sig(INT => 'sigint');, $poe_kernel->sig(KILL => > 'si

KILL-ing my POE app

2005-03-25 Thread Bas Schulte
Hi, my POE app install a handler for sigint ans sigkill ($poe_kernel->sig(INT => 'sigint');, $poe_kernel->sig(KILL => 'sigint');)), this works fine when I start the app and hit ctrl-c. However, when I kill it using kill on the commandline with the pid of the POE app, it just prints "Terminate

Re: anyone using any of the HTTP server components in a heavy use environment?

2005-03-25 Thread David Davis
I'm releasing Apache::Backend::POE today, look for it on CPAN soon. I'll also post the url on the list for those that want it sooner. David On Fri, 25 Mar 2005 19:20:40 +, Matt S Trout <[EMAIL PROTECTED]> wrote: > On Thu, Mar 24, 2005 at 04:30:54PM -0800, David Davis wrote: > > I can give you

Re: anyone using any of the HTTP server components in a heavy use environment?

2005-03-25 Thread Bas Schulte
Hi Phiilip, On vrijdag, maa 25, 2005, at 09:03 Europe/Amsterdam, [EMAIL PROTECTED] wrote: On 25-Mar-2005 David Davis wrote: I can give you what I have written... Apache::Backend::POE It hasn't been heavily tested or given a proper build and docs..but I can help you get started using it. It caches

Re: anyone using any of the HTTP server components in a heavy use environment?

2005-03-25 Thread philip
On 25-Mar-2005 David Davis wrote: > I can give you what I have written... Apache::Backend::POE > > It hasn't been heavily tested or given a proper build and docs..but I > can help you get started using it. > > It caches connections ala Apache::DBI too. > > Interested? I'd be very interested in