views:

1134

answers:

1

Hi,

Does APC module in PHP when running in CLI mode support code optimization? For example, when I run a file with php -f <file> will the file be optimized with APC before executing or not? Presuming APC is set to load in config file. Also, will the scripts included with require_once be also optimized?

I know optimization works fine when running in fastcgi mode, but I'm wondering if it also works in CLI.

apc_* functions work, but I'm wondering about the code optimization, which is the main thing I'm after here.

Happy day, Matic

+1  A: 

Hi,

The documentation of apc.enable_cli, which control whether APC should be activated in CLI mode, says (quoting) :

Mostly for testing and debugging. Setting this enables APC for the CLI version of PHP. Under normal circumstances, it is not ideal to create, populate and destroy the APC cache on every CLI request, but for various test scenarios it is useful to be able to enable APC for the CLI version of PHP easily.

Maybe APC will store the opcodes in memory, but as the PHP executable dies at the end of the script, that memory will be lost : it will not persist between executions of the script.

So opcode-cache in APC is useless in CLI mode : it will not optimize anything, as PHP will still have to re-compile the source to opcodes each time PHP's executable is launched.


Actually, APC doesn't "optimize" : the standard way of executing a PHP script is like this :

  • read the file, and compile it into opcodes
  • execute the opcodes

What APC does is store in opcodes in memory, so the execution of a PHP script becomes :

  • read the opcodes from memory (much faster than compiling the source-code)
  • execute the opcodes

But this means you must have some place in memory to store the opcodes. When running PHP as an Apache module, Apache is responsible for the persistence of that memory segment... When PHP is run from CLI, there is nothing to keep the memory segment there, so it is destroyed at the end of PHP's execution.
(I don't know how it works exactly, but it's something like that, at least in the principles, even if my words are not very "technical" ^^ )


Or, by "optimization" you mean something else than opcode cache, like the configuration directive apc.optimization ? If so, this one has been removed in APC 3.0.13

Pascal MARTIN
From PHP documentation:APC is a free, open, and robust framework for caching and optimizing PHP intermediate code.Guess I'm wondering about the optimization of intermediate code.I plan to execute the CLI script only once and then it will run for a few days, executing some code inside a loop.So APC doesn't really speed up the execution itself, only the time it takes to start executing?
Matic
http://pecl.php.net/package-info.php?package=APC I've never heard APC (at least in recent versions) did any kind of "optimization" like what you could think about the compiler can do when you're programming in C. And I don't think it'll reduce the time taken to start executing, as the PHP will have to be compiled to opcode (it's on this part that APC allows a huge gain... When it can keep those opcodes in memory between executions of the script -- which I don't think it can do in CLI)
Pascal MARTIN