Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:89244 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 20002 invoked from network); 16 Nov 2015 21:11:17 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 16 Nov 2015 21:11:17 -0000 Authentication-Results: pb1.pair.com smtp.mail=jgmdev@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=jgmdev@gmail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.160.173 as permitted sender) X-PHP-List-Original-Sender: jgmdev@gmail.com X-Host-Fingerprint: 209.85.160.173 mail-yk0-f173.google.com Received: from [209.85.160.173] ([209.85.160.173:35504] helo=mail-yk0-f173.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id A0/72-34372-4764A465 for ; Mon, 16 Nov 2015 16:11:17 -0500 Received: by ykba77 with SMTP id a77so262389259ykb.2 for ; Mon, 16 Nov 2015 13:11:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=subject:to:references:from:message-id:date:user-agent:mime-version :in-reply-to:content-type:content-transfer-encoding; bh=2glmA9MGGSJFWqyt13inWWfJbuLn/w49RctYN4YN7gs=; b=aQJwlzLqiuUZUg06fFMAN3XrFNw8+LRLrDc/peEJxmyFkurTB9qWY2av/yJr6qCrWK aGlateh8Bqdy3y7PgaeP4PCA97KQOY7gPETJcxuusufQW+rdJcG8oWBap1ezKJD8Y5hq 12LxGf53FwCz9A5JiL4IixawoWhbh7AN83a4aTxLZhV49pTBT9m83uBNdmGajgTBNkpe rfsqWx20yGV6YEH012XtKGzoNUJnyWkQYvgZDT71ngoawvjp1Wdvlj0cYQ6rk26cMuXR aODNu4KiwRKfHHsdopZ/caqqLgr4D1FNu5riGV7VYgl/iVaCrt2a85aCs6bJZxvKBPHA xZ/w== X-Received: by 10.129.72.204 with SMTP id v195mr13134420ywa.101.1447708271993; Mon, 16 Nov 2015 13:11:11 -0800 (PST) Received: from [192.168.1.149] ([24.50.216.190]) by smtp.gmail.com with ESMTPSA id p202sm36850134ywe.44.2015.11.16.13.11.10 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 16 Nov 2015 13:11:11 -0800 (PST) To: Rasmus Lerdorf , internals@lists.php.net References: <12.A1.62946.CB756465@pb1.pair.com> <564659DF.5070904@php.net> <77.62.62946.F6D56465@pb1.pair.com> <80ED4CA4-1548-48B5-A94B-B3FA1377C755@lerdorf.com> <54.63.62946.75D96465@pb1.pair.com> <564A38FB.2020101@gmail.com> <564A3B14.1040003@lerdorf.com> Message-ID: <564A4668.8050704@gmail.com> Date: Mon, 16 Nov 2015 17:11:04 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <564A3B14.1040003@lerdorf.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] Support for writing and executing compiled opcodeStephen Coakley From: jgmdev@gmail.com (Jefferson Gonzalez) On 11/16/2015 04:22 PM, Rasmus Lerdorf wrote: > But that is exactly what the file-based opcache does by itself. The only > speedup you achieve by trying to distribute the .bin files would be a > minor boost the first time a cli script is executed. All subsequent runs > of the script would hit the cache. The added complexity and potential > version conflicts of trying to distribute the .bin files doesn't seem > like it would be worth the trouble for such a minor one-time performance > benefit. > > -Rasmus > > But as far as I know thats only possible with php-cli and not with php-cgi, is it?