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

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

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 Terminated

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