in reply to Perl application server recommendation

I would use mod_perl for this. It's well-tested, scales, has all the hard networking stuff already done for you, etc. You can even replace HTTP with a custom protocol if you need to in mod_perl 2, but I wouldn't do that if you can avoid it. To answer your question, if the client disconnects you can detect it, but unless you actively check and stop, execution just continues. This is in the documentation.
  • Comment on Re: Perl application server recommendation

Replies are listed 'Best First'.
Re^2: Perl application server recommendation
by jaa (Friar) on Jun 08, 2006 at 07:47 UTC
    Thanks Perrin - esp for the info regarding dropped client connections. As we are already using both Apache versions, and Perl this does seem a natural fit.

    Regards,

    Jeff