Deutsch English Français Italiano |
<vd6dnk$nrif$2@dont-email.me> View for Bookmarking (what is this?) Look up another Usenet article |
Path: ...!news.mixmin.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail From: =?UTF-8?Q?Arne_Vajh=C3=B8j?= <arne@vajhoej.dk> Newsgroups: comp.os.vms Subject: Re: Apache + mod_php performance Date: Fri, 27 Sep 2024 09:59:16 -0400 Organization: A noiseless patient Spider Lines: 24 Message-ID: <vd6dnk$nrif$2@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> <vd3kkb$66dq$1@dont-email.me> <vd3r5d$74q1$1@dont-email.me> <vd5196$e44d$1@dont-email.me> <vd51kr$i6sg$2@dont-email.me> <vd54jp$e44c$1@dont-email.me> <vd55n2$ilcl$4@dont-email.me> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Injection-Date: Fri, 27 Sep 2024 15:59:17 +0200 (CEST) Injection-Info: dont-email.me; posting-host="1c0eb99617403d5d511f3f96ce19037b"; logging-data="781903"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX195F4TrG+/fsLKKs4/6bDSPQyAwDp/B/Ik=" User-Agent: Mozilla Thunderbird Cancel-Lock: sha1:Z9dFjZsfqzfI6MTrpghrHLgDQkw= Content-Language: en-US In-Reply-To: <vd55n2$ilcl$4@dont-email.me> Bytes: 2203 On 9/26/2024 10:36 PM, Lawrence D'Oliveiro wrote: > On Thu, 26 Sep 2024 22:17:29 -0400, Arne Vajhøj wrote: >> On 9/26/2024 9:26 PM, Lawrence D'Oliveiro wrote: >>> That and the need for all the ASTs. >> >> Why should AST's be a problem? >> >> The "call this function when task is done" approach is a very common >> design today. DEC was ahead of time with that. > > Set attention AST → wait for AST to trigger → queue actual I/O → wait for > AST to signal completion. Too many system calls and transitions back and > forth between user and kernel modes. I don't think anyone would use that flow. You setup a read attention AST, it triggers and then you know that there are data to be read. There is no reason to make reading async then, because you know it will not block. Arne