News Feed
Jobs Feed
Sections




News Archive
Brandon Savage's Blog:
To stat() Or Not To stat()?
July 31, 2009 @ 08:29:10

In this new post to his blog about the APC caching tool that can speed up your PHP applications dramatically when used correctly. Brandon recommends a tweak that could help it go even faster.

The very first thing that APC does when it's turned on is begin caching the opcode output from all of your PHP files. [...] Also by default, APC checks the file on the file system to determine if it has changed since the last time APC cached the opcodes. When APC does this, it executes a file-system-level stat() call, which in the scheme of the calls performed is expensive.

There's a setting in your php.ini to take care of this (you might have to add it in) - apc.stat - that can just be set to "FALSE". There are some drawbacks he points out, though like restarts required for clearing the cache and the fact that, no matter what you do, bad code will always run badly.

0 comments voice your opinion now!
stat apc cache phpini


blog comments powered by Disqus

Similar Posts

Community News: PHP Cache Accelerator for Windows

Procurios Blog: Fragment Cache - an introduction / PHP

Chris Jones' Blog: Oracle 11g Result Caching and PHP OCI8

Kevin van Zonneveld's Blog: Redis PHP Introduction

Gopal Vijayaraghavan's Blog: APC Autofilter: The Real Story


Community Events









Don't see your event here?
Let us know!


composer release interview zendframework2 testing event introduction code opinion development object functional example community database api phpunit unittest language framework

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework