Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:70044 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 83224 invoked from network); 6 Nov 2013 22:43:04 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 6 Nov 2013 22:43:04 -0000 Authentication-Results: pb1.pair.com header.from=keisial@gmail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=keisial@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 74.125.82.50 as permitted sender) X-PHP-List-Original-Sender: keisial@gmail.com X-Host-Fingerprint: 74.125.82.50 mail-wg0-f50.google.com Received: from [74.125.82.50] ([74.125.82.50:40014] helo=mail-wg0-f50.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 23/E0-12865-7F5CA725 for ; Wed, 06 Nov 2013 17:43:04 -0500 Received: by mail-wg0-f50.google.com with SMTP id n12so166373wgh.17 for ; Wed, 06 Nov 2013 14:43:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type; bh=kVAQcyLJCp+oI5KiOQVUMcSzpJwSscmEdSzrr9A2Rwk=; b=efFJsAfPk2sQv3kHgdiDg/XvJzBGmcOyr/97m+ui37x80UXuQchYDA3CRULouCqru6 sbhNiAz6zjQwV9U8AZIidOxF8Ecm+unUjxiiN7Usvlvyv6sJApKNk2LLrkRsUL43Rl1h A8ox4cuUxF/kpR0AssJz1CIIx9wn0PAmhCAfkjxycWW91ZmOw7vtUNAwhu+MapJexwVI llQMl3mHa+/HxswKK4NYFBVoU/5/K3/jR1X4pGlQu/OjVJctGe378kg+f3/w65JlmwAi SjuyYyJ1ppsPBgp3mCKiZ8tX5U5DQZVeDhGQTyWMSmhC9T+6aL71mUxEEig41TwQUWqI d5fQ== X-Received: by 10.180.99.3 with SMTP id em3mr26323wib.4.1383777779982; Wed, 06 Nov 2013 14:42:59 -0800 (PST) Received: from [192.168.1.27] (62.Red-79-148-5.dynamicIP.rima-tde.net. [79.148.5.62]) by mx.google.com with ESMTPSA id dj8sm938583wid.2.2013.11.06.14.42.58 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 06 Nov 2013 14:42:59 -0800 (PST) Message-ID: <527AC5F2.5090401@gmail.com> Date: Wed, 06 Nov 2013 23:42:58 +0100 User-Agent: Thunderbird MIME-Version: 1.0 To: Yasuo Ohgaki CC: Kevin Ingwersen , PHP internals References: <60B9BBE0-BC3F-490A-AD78-9EBC22C808CF@googlemail.com> <5279F08B.1050803@gmail.com> In-Reply-To: Content-Type: multipart/alternative; boundary="------------000401040308060103040101" Subject: Re: [PHP-DEV] CLI Web Server customization From: keisial@gmail.com (=?UTF-8?B?w4FuZ2VsIEdvbnrDoWxleg==?=) --------------000401040308060103040101 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit On 06/11/13 09:05, Yasuo Ohgaki wrote: > Hi Angel, > > On Wed, Nov 6, 2013 at 4:32 PM, Ángel González > wrote: > > It doesn't handle petitions concurrently, which bars its use on > most production environments. > > > What do you mean? > Could you explain little more? > > Regards, I was refering to the piece you mentioned before: > BTW, Manual also states "Requests are served sequentially.", but it does > not block > concurrent requests. It may be misleading and not needed. It may be easier to explain with an example: $ echo ' a.php $ echo ' b.php $ php -S 127.0.0.1:8080 If you now request a.php and b.php, using separate connections. a.php will take 10 seconds, but b.php will also take 10 seconds even though it is quick, as it will need to wait for a.php to finish. --------------000401040308060103040101--