Re: asynchronous execution, was Re: implementing a set of queue-processing servers

[email protected] (Perrin Harkins) Tue, 26 Nov 2002 12:17:17 -0500
Newsgroups perl.p5ee
Message-ID <[email protected]>
Nigel Hamilton wrote:
> 	I need to fork a lot of processes per request ... the memory cost 
> of forking an apache child is too high though.
> 	
> 	So I've written my own mini webserver in Perl

It doesn't seem like this would help much.  The thing that makes 
mod_perl processes big is Perl.  If you run the same code in both they 
should have a similar size.

- Perrin