Sujet : Re: Apache + mod_php performance
De : craigberry (at) *nospam* nospam.mac.com (Craig A. Berry)
Groupes : comp.os.vmsDate : 03. Oct 2024, 22:22:03
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <vdn1tr$3sh36$1@dont-email.me>
References : 1 2 3 4 5
User-Agent : Mozilla Thunderbird
On 10/3/24 3:40 PM, Dan Cross wrote:
The issue here is that a browser may open a connection to the
server and the user may wander away; if that connection is
persistent, then it's going to tie up an Apache instance, since
the user has gone to get a cup of coffee or whatever and isn't
actively using it.
Of course, this isn't specific to VMS, or a function of how VSI
ported it or whatever else Arne initially thought.
What's specific to VMS is that pre-fork MPM is the only game in town if
you want to use Apache. Whether the other mechanisms in use on other
platforms and designed specifically to address the problem Arne
encountered could be made to work on VMS is an open question, but not
something anyone outside VSI could try without the sources. I think
event is out because there is no kqueue or epoll. The worker model
might be possible. Or a custom one using ASTs instead of pthreads.