Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:86884 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 35808 invoked from network); 25 Jun 2015 20:31:41 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 25 Jun 2015 20:31:41 -0000 Authentication-Results: pb1.pair.com smtp.mail=ua.san.alex@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=ua.san.alex@gmail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.213.176 as permitted sender) X-PHP-List-Original-Sender: ua.san.alex@gmail.com X-Host-Fingerprint: 209.85.213.176 mail-ig0-f176.google.com Received: from [209.85.213.176] ([209.85.213.176:36855] helo=mail-ig0-f176.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id EC/F1-24641-B256C855 for ; Thu, 25 Jun 2015 16:31:39 -0400 Received: by igbiq7 with SMTP id iq7so266306igb.1 for ; Thu, 25 Jun 2015 13:31:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=kseal42kSGi49pbCowqFKIW/PCEOmoY5bM40eDlIYpY=; b=FioYrlVbnm8gwMYEWKWkrvdyMtZWDySr9HIuSP1Hq851s4LJYxko/0HXpSWXxzJIAD IJg394KbgJANmXZJcd4NInbd+ivkd7oQ37i7lRX+kFIKVLYvNJtD6xry2CkehtnmSNTN WoEZXAtul30fM4LGQARYJxvUgi/HDriQhy4OJFThq9QuS4op9rYk12d/e7+xue97wETK xS9vjOSD9uhsPHcKZRlzewOz0eJEFpLkkoyaTfyc6VKTpREG4VkitWgULoYJiPfGQco7 6nPPDxUOFkv4drbp3w86yldz8vnx5ywdA1WAHzgaht/v2/Xrvi3YxSvuCVckuSN60kH/ GkGQ== MIME-Version: 1.0 X-Received: by 10.50.93.69 with SMTP id cs5mr2427526igb.4.1435264297038; Thu, 25 Jun 2015 13:31:37 -0700 (PDT) Received: by 10.50.246.20 with HTTP; Thu, 25 Jun 2015 13:31:36 -0700 (PDT) Date: Thu, 25 Jun 2015 23:31:36 +0300 Message-ID: To: internals Content-Type: text/plain; charset=UTF-8 Subject: [PHP-DEV] New PHP SAPI for Nginx From: ua.san.alex@gmail.com ("S.A.N") New versions Nginx, implement thread pools, http://nginx.com/blog/thread-pools-boost-performance-9x/ I think this is a good opportunity to write a Nginx module (PHP SAPI) which is to process requests for PHP scripts in processes Nginx. Quality advantages, as compared with the FPM, no network overhead, less memory consumption, may be implemented mode ZTS (Zend Thread Safety). What do you think about this? Thank.