Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:46284 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 97199 invoked from network); 5 Dec 2009 00:40:10 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 5 Dec 2009 00:40:10 -0000 Authentication-Results: pb1.pair.com header.from=mike503@gmail.com; sender-id=pass; domainkeys=bad Authentication-Results: pb1.pair.com smtp.mail=mike503@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.222.176 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: mike503@gmail.com X-Host-Fingerprint: 209.85.222.176 mail-pz0-f176.google.com Received: from [209.85.222.176] ([209.85.222.176:63599] helo=mail-pz0-f176.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id C4/36-55077-9EBA91B4 for ; Fri, 04 Dec 2009 19:40:09 -0500 Received: by pzk6 with SMTP id 6so2765744pzk.29 for ; Fri, 04 Dec 2009 16:40:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=fCTgz6LgEsnmDotX99i6K+Z6D7FLgoplalLu5lwQZAk=; b=pLUnU+cBgu/onr8v4wxil6HEg/oFmgA74aYkI5ZbSrgUUlrEfRxMt1N28EnTLzgBl6 c8d9WWcFm3y8HNu8ZKa1Bv4RB/UnUaPDd7mfvQjG7+YN380q1VgyQf5P43a0uQFzyQHK nS9xnoMTnHn/8UGHDJnnZZHvwc+yA4nXzXuRo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=BcGXAGFAMdUrJAUfxdtaW8Hy1txNfz9QnqQ0t1vAqr0MO/nI2WVgDVUJCi7eDWUZbg eVfUUNdLC9+AqI1LK3uQvL7ZSiBmS0TpYr/3XMhycffWP/+PO5VHScCl4IJrO7L+gQgj 9lq6gJK0washTpxAtdCrfv0lyyIdY/aV6ycUE= MIME-Version: 1.0 Received: by 10.115.39.11 with SMTP id r11mr5117061waj.152.1259973605043; Fri, 04 Dec 2009 16:40:05 -0800 (PST) In-Reply-To: <4B190660.2050107@daylessday.org> References: <4B190660.2050107@daylessday.org> Date: Fri, 4 Dec 2009 16:40:04 -0800 Message-ID: To: Antony Dovgal Cc: php-dev Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] FPM is available in a separate SVN branch From: mike503@gmail.com (Michael Shadle) what version of PHP-FPM code is this based off of? the latest 0.6.x at launchpad or one of the older patches? we have had reports of some issues with php 5.3.x and php-fpm 0.6.x. Andrei had changed the code from being a patch to being a standalone daemon that builds against vanilla php sources for the "new" 0.6.x generation. Just want to know when in the timeline you pulled the code from so we can ask people to test the bugs they reported against it to see if it's still a bug. On Fri, Dec 4, 2009 at 4:53 AM, Antony Dovgal wrote: > Hello all. > > I'm glad to announce that we now have FPM SAPI available for testing in a separate SVN branch. > > You can check out its sources using the following command: > svn co http://svn.php.net/repository/php/php-src/branches/PHP_5_3_FPM php_5_3_fpm > > Building FPM is as easy as `./configure --enable-fpm && make install`. > After that you need to adjust the default config file (installed into $prefix/etc) > and run `php-fpm`. > > > For those who don't know what FPM is: FPM (FastCGI Process Manager) is an alternative > PHP FastCGI implementation with some additional features useful for heavy-loaded sites. > These features include: > - advanced process management with graceful stop/start; > - ability to start workers with different uid/gid/chroot/environment and different php.ini (replaces safe_mode); > - stdout & stderr logging; > - emergency restart in case of accidental opcode cache destruction; > - accelerated upload support; > - "slowlog"; > - fastcgi_finish_request() - special function to finish request & flush all data while > continuing to do something time-consuming (video converting, stats processing etc.); > and some more. > > You are welcome to test the code and report any issues to me (since it's not fully official, > we don't have a category @ bugs.php.net yet). > > -- > Wbr, > Antony Dovgal > --- > http://pinba.org - realtime statistics for PHP > > -- > PHP Internals - PHP Runtime Development Mailing List > To unsubscribe, visit: http://www.php.net/unsub.php > >