Deutsch   English   Français   Italiano  
<vdbq08$1pg2p$2@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: =?UTF-8?Q?Arne_Vajh=C3=B8j?= <arne@vajhoej.dk>
Newsgroups: comp.os.vms
Subject: Re: Apache + mod_php performance
Date: Sun, 29 Sep 2024 10:59:20 -0400
Organization: A noiseless patient Spider
Lines: 25
Message-ID: <vdbq08$1pg2p$2@dont-email.me>
References: <vcv0bl$39mnj$1@dont-email.me> <vd1lgd$dbq$1@reader1.panix.com>
 <vd1u8j$3qqpg$1@dont-email.me> <vd7hbi$tgu3$2@dont-email.me>
 <vd7j5q$t5d$1@reader1.panix.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 29 Sep 2024 16:59:21 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="bc06a8f6134385e116c9cfce5e1ddc31";
	logging-data="1884249"; mail-complaints-to="abuse@eternal-september.org";	posting-account="U2FsdGVkX19GgPSNOMNhkVrHSEy/E+EaR31kVq4Sng0="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:um6HyGRZ20/R6PlPlxTRFhOQkGE=
In-Reply-To: <vd7j5q$t5d$1@reader1.panix.com>
Content-Language: en-US
Bytes: 2071

On 9/27/2024 8:38 PM, Dan Cross wrote:
> In article <vd7hbi$tgu3$2@dont-email.me>,
> Arne Vajhøj  <arne@vajhoej.dk> wrote:
>> And note that keep alive was not needed for me, but it is needed in many
>> other scenarios:
>> - web pages with lots of graphics
>> - high volume server to server web services
> 
> Actually, it's useful for any scenario in which you may send
> several requests to the same server at roughly the same time,
> such as an HTML document and separate CSS stylesheet, not just
> graphics or "server to server web services".

There is no difference in how graphics and CSS are handled,
so the benefits of reusing a connection is the same.

But there is a difference in number of requests. CSS will typical
be cached by the browser. So number of CSS requests will be a fraction
of number of HTML requests, while pages with lots of graphics
will have many graphics requests per HTML request.

Arne