Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:65453 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 86963 invoked from network); 30 Jan 2013 00:27:20 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 30 Jan 2013 00:27:20 -0000 Authentication-Results: pb1.pair.com header.from=rasmus@lerdorf.com; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=rasmus@lerdorf.com; spf=permerror; sender-id=unknown Received-SPF: error (pb1.pair.com: domain lerdorf.com from 209.85.220.170 cause and error) X-PHP-List-Original-Sender: rasmus@lerdorf.com X-Host-Fingerprint: 209.85.220.170 mail-vc0-f170.google.com Received: from [209.85.220.170] ([209.85.220.170:41433] helo=mail-vc0-f170.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id A6/C3-10721-6E868015 for ; Tue, 29 Jan 2013 19:27:19 -0500 Received: by mail-vc0-f170.google.com with SMTP id p16so682151vcq.15 for ; Tue, 29 Jan 2013 16:27:15 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding:x-gm-message-state; bh=ejHI/ypuooBt7CdHzIFXCMZ/mLvcP/No+ZaT1H03edg=; b=D4iYnANKzCyTmkcdPnNdjV8lYwu8jDfuXBnMlRj0v2FyxqAXE/EOvTwolfKLpSYe0Y 2Ka7c64hxZEpal1173J7FzK6lMuscGrmest4JTX4ancntz8akyO/kDW4ennVgdfcWbeQ lNmnTYC1/qI7EpRqW8gIwKFIpRCR3piI3GxVWjucVbrJ4/E3t8kUyc9ifwABaKai26J7 AG3SDUNN+6oALZvFBTou2gaxtM9kI+JFq27jRvhuHw7SGeeRXgmAzOxqbRkgdgiB6TlB sZ/uS/y8W42r2hosrBwLnYIu4QVlQ09E5HuDs2ImtNzNvTaA3G1ufbhpMZlCWLkEti6O jXhQ== X-Received: by 10.220.156.75 with SMTP id v11mr3238673vcw.1.1359505635835; Tue, 29 Jan 2013 16:27:15 -0800 (PST) Received: from [192.168.200.148] (c-50-131-44-225.hsd1.ca.comcast.net. [50.131.44.225]) by mx.google.com with ESMTPS id g5sm9792014vez.6.2013.01.29.16.27.12 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 29 Jan 2013 16:27:14 -0800 (PST) Message-ID: <510868DE.7010408@lerdorf.com> Date: Tue, 29 Jan 2013 16:27:10 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130106 Thunderbird/17.0.2 MIME-Version: 1.0 To: Christopher Jones CC: Zeev Suraski , internals@lists.php.net References: <5d21b42656d49b4a71d9f808541bd745@mail.gmail.com> <51078485.30107@rotorised.com> <11e1ccc6eca996d9d94ae9a3bff0bbab@mail.gmail.com> <5108667C.1030901@oracle.com> In-Reply-To: <5108667C.1030901@oracle.com> X-Enigmail-Version: 1.4.6 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Gm-Message-State: ALoCoQm5W14akIK5+MPBEeppEuhPcnikKkTaE8rxnBkJM3xbTM5YJfD/BIUYqIogIVcMka+TYvmh Subject: Re: [PHP-DEV] [RFC] Integrating Zend Optimizer+ into the PHP distribution From: rasmus@lerdorf.com (Rasmus Lerdorf) On 01/29/2013 04:17 PM, Christopher Jones wrote: > It would be useful to link to the current Optimizer+ doc from the RFC. > I believe the link is > http://static.zend.com/topics/Zend-Optimizer-User-Guide-v330-new.pdf Different beast. Something like this is more apt: http://files.zend.com/help/previous-version/Zend-Server-5-Community-Edition/zendoptimizerplus.html which shows the dreaded zend_optimizerplus.inherited_hack which mimics APC's autofilter hack. I'd love to get rid of this particular bit of confusion/code complexity on the integration. > Can you comment (in the RFC) on differences that the open source code > may have from this documentation e.g. on what Zend Guard integration > will be included, or what obsolete features you might clean out? Again, you are talking about a different product. Ignore any Zend Guard stuff. > Can you list potential platform or extension (XDebug) portability > issues? XDebug together with an opcode cache is always a shaky thing and not something we should be too concerned about. You would never want to run both in production. It would be good if they didn't clobber each other for dev environment purposes, but I am sure we can figure that out. -Rasmus