Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:49889 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 52508 invoked from network); 8 Oct 2010 10:04:02 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 8 Oct 2010 10:04:02 -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.216.170 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.216.170 mail-qy0-f170.google.com Received: from [209.85.216.170] ([209.85.216.170:38131] helo=mail-qy0-f170.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 17/83-31204-09CEEAC4 for ; Fri, 08 Oct 2010 06:04:01 -0400 Received: by qyk34 with SMTP id 34so6605198qyk.8 for ; Fri, 08 Oct 2010 03:03:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=pecdZeSwjaVxhiD/pKla6MCGwBkYwUGZ1fDSBIz4ukM=; b=p+LbZz64srRfDArxSuxFRZEdbZd0w4+ez9xr9rXE22Xpz7W2Gxgi6IjSy9N3Cq68z7 GqWCDQQ1Is93dEAmagVoixBHZ5/Z8ONRPn+fo2R3CxuIUinCkMjsOX7YfMc+L9Ql+Vlp a/htUobSSmPNQqWWELvDhs2zIb5zQ/GIXJ/EU= 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 :content-type; b=sOIPbgsxVKY1sTC4tRx3t75lhl5PvzUyDGYiw2jomGHFXKgQ7bl3rDNcCoHR1xlHB+ 8VLjRESpFNQXUQrA43v6S01MUaWdC2SJ2LW4XGZRW+5+5UaKcP7uu6001y7MbUmludcI n8lGJ42LxxvCyZzcYW5VPu88Crt3ZzZcFraLI= MIME-Version: 1.0 Received: by 10.224.182.204 with SMTP id cd12mr1353136qab.250.1286532236654; Fri, 08 Oct 2010 03:03:56 -0700 (PDT) Received: by 10.229.231.196 with HTTP; Fri, 8 Oct 2010 03:03:54 -0700 (PDT) In-Reply-To: <2C.13.31204.0D8EEAC4@pb1.pair.com> References: <73.09.01054.7EC0EAC4@pb1.pair.com> <2C.13.31204.0D8EEAC4@pb1.pair.com> Date: Fri, 8 Oct 2010 03:03:54 -0700 Message-ID: To: php-dev Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] stat functions do each path component? From: mike503@gmail.com (Michael Shadle) On Fri, Oct 8, 2010 at 2:47 AM, jvlad wrote: >> Hi. >> >> This was discussed before. >> see >> http://www.mail-archive.com/internals@lists.php.net/msg37211.html >> >> Tyrael I have a question after reading through that thread - apc.include_once_override - boolean, default is 0 Optimize include_once() and require_once() calls and avoid the expensive system calls used. I actually read APC was going to be doing optimizations helping the _once calls, I guess this is what it was talking about, however I thought it was included by default, but apparently it is not. The manual doesn't give much more detail than "optimizes the calls" - no warnings or anything to caution a user against it. Someone did leave a comment saying it creates more problems than it solves, and 5.3 implemented most of those optimizations anyway. Is this true? Why would someone NOT include that? I mean, the point of the opcode cache is to optimize things. Seems like that should be on by default.