Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:49684 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 51478 invoked from network); 16 Sep 2010 02:37:57 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 16 Sep 2010 02:37:57 -0000 Authentication-Results: pb1.pair.com smtp.mail=rasmus@lerdorf.com; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=rasmus@lerdorf.com; sender-id=unknown Received-SPF: error (pb1.pair.com: domain lerdorf.com from 209.85.212.170 cause and error) X-PHP-List-Original-Sender: rasmus@lerdorf.com X-Host-Fingerprint: 209.85.212.170 mail-px0-f170.google.com Received: from [209.85.212.170] ([209.85.212.170:35023] helo=mail-px0-f170.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 5E/30-48270-403819C4 for ; Wed, 15 Sep 2010 22:37:57 -0400 Received: by pxi17 with SMTP id 17so276146pxi.29 for ; Wed, 15 Sep 2010 19:37:53 -0700 (PDT) Received: by 10.142.87.17 with SMTP id k17mr1591466wfb.209.1284604673119; Wed, 15 Sep 2010 19:37:53 -0700 (PDT) Received: from Rasmus-Lerdorfs-MacBook-Pro.local (c-24-7-29-193.hsd1.ca.comcast.net [24.7.29.193]) by mx.google.com with ESMTPS id 9sm2435776wfd.0.2010.09.15.19.37.51 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 15 Sep 2010 19:37:51 -0700 (PDT) Message-ID: <4C9182FE.7000905@lerdorf.com> Date: Wed, 15 Sep 2010 19:37:50 -0700 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2.9) Gecko/20100825 Lightning/1.0b2 Thunderbird/3.1.3 MIME-Version: 1.0 To: J Ravi Menon CC: internals@lists.php.net References: <4C910E9C.7040004@lerdorf.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] nginx+php-fpm question From: rasmus@lerdorf.com (Rasmus Lerdorf) On 9/15/10 7:13 PM, J Ravi Menon wrote: > On Wed, Sep 15, 2010 at 12:40 PM, J Ravi Menon wrote: >> On Wed, Sep 15, 2010 at 11:21 AM, Rasmus Lerdorf wrote: >>> On 9/15/10 10:57 AM, J Ravi Menon wrote: >>>> So my guess is, if we do php-fpm approach, we have to do all these >>>> cleanups manually? Or are there simpler solutions or hook-ups that >>>> does it automatically at the end of the request cycle? >>> >>> No, fastcgi doesn't change this model at all. You have the same >>> end-of-requests cleanups as with mod_php. >>> >> Ah good to know. >> > So with this mod_php like behavior, do we also need to have apc > enabled in this setup for the opcode cache? As a cli daemon, I am > assuming this is not necessary? APC works perfectly out of the box with this setup. It is no different from something like Apache where you have a root process that creates the mmap segment which then forks children that inherit the pointer to that segment. -Rasmus