You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Haskell Curry <ha...@hotmail.com> on 2003/11/22 15:06:18 UTC

child connection ?

How much diferent connections can a child handle !?

>From: Aaron Bannert <aa...@clove.org>
>Reply-To: dev@httpd.apache.org
>To: dev@httpd.apache.org
>Subject: Re: Fwd: request scheduling ?
>Date: Fri, 21 Nov 2003 22:42:29 -0800
>
>On Sat, Nov 22, 2003 at 01:23:24AM +0000, Haskell Curry wrote:
> > How does the apache do the request scheduling !?
> > does the child do the scheduling or apache let it for the threads !?
>
>Scheduling is currently always left up to the operating system,
>whether you are on a prefork MPM or the worker (threaded) MPM.
>
>-aaron

_________________________________________________________________
MSN Messenger: converse com os seus amigos online.  
http://messenger.msn.com.br


Re: child connection ?

Posted by Jeff Trawick <tr...@attglobal.net>.
Haskell Curry wrote:
> How much diferent connections can a child handle !?

one per MPM-created thread

for prefork, that is 1 per child since there is only one MPM-created thread
for threaded MPMs, the number of threads (and thus concurrent connections) is 
set by the ThreadsPerChild directive


Re: child connection ?

Posted by Aaron Bannert <aa...@clove.org>.
At one time? The Prefork MPM (Apache 1.3+) can only handle one at
a time. The Worker MPM (in Apache 2.0+ only) can handle multiple
at a time, since it is multithreaded.

-aaron


On Sat, Nov 22, 2003 at 02:06:18PM +0000, Haskell Curry wrote:
> How much diferent connections can a child handle !?
> 
> >From: Aaron Bannert <aa...@clove.org>
> >Reply-To: dev@httpd.apache.org
> >To: dev@httpd.apache.org
> >Subject: Re: Fwd: request scheduling ?
> >Date: Fri, 21 Nov 2003 22:42:29 -0800
> >
> >On Sat, Nov 22, 2003 at 01:23:24AM +0000, Haskell Curry wrote:
> >> How does the apache do the request scheduling !?
> >> does the child do the scheduling or apache let it for the threads !?
> >
> >Scheduling is currently always left up to the operating system,
> >whether you are on a prefork MPM or the worker (threaded) MPM.
> >
> >-aaron
> 
> _________________________________________________________________
> MSN Messenger: converse com os seus amigos online.  
> http://messenger.msn.com.br
>