Deutsch   English   Français   Italiano  
<vd29c7$3sfcc$1@dont-email.me>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: ...!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: Lawrence D'Oliveiro <ldo@nz.invalid>
Newsgroups: comp.os.vms
Subject: Re: Apache + mod_php performance
Date: Thu, 26 Sep 2024 00:20:23 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 19
Message-ID: <vd29c7$3sfcc$1@dont-email.me>
References: <vcv0bl$39mnj$1@dont-email.me> <vcvmu1$3cnv1$2@dont-email.me>
	<vd10re$nmp$1@reader1.panix.com> <vd1bdp$3npm3$1@dont-email.me>
	<vd1lgd$dbq$1@reader1.panix.com> <vd1u8j$3qqpg$1@dont-email.me>
	<vd25hj$3s2q8$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Thu, 26 Sep 2024 02:20:24 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="bdf142e3b9878dfa03dc2566703c0971";
	logging-data="4078988"; mail-complaints-to="abuse@eternal-september.org";	posting-account="U2FsdGVkX1+WzbrI1x8aiBpqw8oR+EJz"
User-Agent: Pan/0.160 (Toresk; )
Cancel-Lock: sha1:V15nSFwFXBsE6thgM0BrY95Aqx0=
Bytes: 1865

On Wed, 25 Sep 2024 19:14:58 -0400, Arne Vajhøj wrote:

> Based on some messages in error_log it looks like it uses mailboxes
> APACHE$AWS_CONTROL_MBX_nn.
> 
> If every request result in mailbox comm between master process and a
> child process, then that could slow down things.

I also wonder about the difference in handling nondeterministic 
communication.

On *nix systems, you have poll/select (also other options like epoll or 
kqueue, depending on the *nix variant) for monitoring multiple 
communication channels at once, and all your files/pipes/sockets are 
treated as byte streams.

On VMS, you have to have async QIO calls pending on every channel that you 
want to monitor, and all the communication channels are treated as record-
oriented.