Currently, it isn't possible to enable optimizations without enabling caching.
They should be orthogonal features - it's already possible to cache without
optimization passes by setting opcache.optimization_level=0
.
Without the feature being proposed, users would either have to enable shared memory caching, or opcache.file_cache_only
. Doing that has the following drawbacks:
opcache.file_cache_only
, users would be forced to manage the file cache. The end users of an application using opcache.file_cache_only
may be unfamiliar with opcache. opcache.file_cache_only
could lead to issues such as running out of disk space, needing to clear stale entries, concerns about opcode corruption not being fixed after restarting a process or computer, etc)
Make the opcode optimizer and JIT available without opcode caching, through a new setting opcache.allow_cache
.
opcache.allow_cache=0
is useful when there isn't much available memory and/or there are multiple long-lived php scripts managed by something that is not a php script.
Some example use cases are:
supervisord
managing hundreds of long-lived PHP CLI processes.pcntl_fork
)
Even when barely any files are run, the virtual memory to track the shared memory segment seems to add 2MB extra per independent php process in “shared memory” segments, reducing the free RAM available for other processes.
(starting a large number of php CLI scripts that sleep()
in a loop, free
(Linux program to report free memory) reports that shared
(shared memory) increases by 2MB per process with the default (opcache.allow_cache=1
), but barely increases with opcache.allow_cache=0
. This will vary on different systems, and will use up more memory if many php files are loaded.
opcache.allow_cache=0
is not intended for running web servers (e.g. apache
), where PHP would share a common memory address space (it would almost always be better to cache when optimizations are enabled).
opcache.allow_cache=0
is also not intended for extremely short-lived CLI processes (Opcode optimization may be more time-consuming than the program being run, making opcache.file_cache
or opcache.enable_cli=0
a better choice).
opcache.allow_cache=0
takes precedence over opcache.file_cache
and opcache.file_cache_only
. Neither the shared memory cache nor the file cache will be used when opcache.allow_cache=0
is used to disable opcode caching.
It is an error to both set opcache.allow_cache=0
and provide a script to preload (opcache.preload
). auto_prepend_file
can be used instead of opcache.preload
if you want to run a script before your file without caching it.
Opcache's opcode optimizations and JIT are unaffected.
None. Code that does not enable opcache.file_cache
should not be affected.
8.0
The APIs those SAPIs use will be unaffected.
Applications using the CLI, Development web server, embedded PHP, and so on will be able to take advantage of opcache.allow_cache=0
if it was useful to optimize without caching.
Extensions that check if opcache is enabled may have to update their checks if they did so by checking if opcache caching settings are enabled.
The code changes to opcache's optimization and caching are minimal - the implementation of this RFC is effectively the same opcache.file_cache_only
without reading or writing files.
opcache_get_status()
now includes the following new booleans
optimizations_enabled
, which is true if any optimization passes will get run.allow_cache
, which will be true if opcache caching (in shared memory or the file cache) is enabled.
opcache_get_status()
already had the undocumented field opcache_enabled
. Looking at the implementation, it appears to be true when shared memory caching is successfully enabled, whether or not optimizations are enabled. Similarly to the existing behavior for file_cache_only
, when opcache.allow_cache=0
, the field opcache_enabled
will be false.
opcache.allow_cache=1
(caching is allowed) will be the hardcoded default and the default value in php.ini-development
and php.ini-production
.
On an unrelated PR, Dmitry Stogov mentioned that
Also, it would be great to move optimizer and JIT into core, to make them available even without opcode caching.
On the PR implementing opcache.allow_cache=0
, Nikita Popov wrote:
I like the idea of having optimization without caching, but the way to go about this is definitely moving the optimizer into Zend and making it available completely independently of the opcache extension. This has been “planned” for a long time, but never actually happened.
opcache.allow_cache=0
should continue to be used, and either continue using that setting name, or deprecate it and emit a migration notice/warning on startup.opcache.allow_cache=0
would have a use case before and after such a refactoring, providing the benefits I mentioned for the use cases in this RFC. This would continue to be have a use case even if the caching parts of opcache.so
moved into PHP's core (e.g. if that was done, and the caching module were loaded in php.ini as zend_extension=opcache.so
, there'd still be a use case for a configuration setting to override that default to disable caching for running individual programs) opcache.enable
, opcache.enable_cli
, and opcache.optimization_level
to continue controlling whether optimizations are performed (so setting the combination of opcache.enable=1
, opcache.enable_cli=1
, and a setting such as opcache.allow_cache=0
to optimize without caching would still make sense even after optimizations were moved into core.)opcache.allow_cache=0
is used, it may be possible to use all of the class, function, constant, etc. definitions parsed from previously parsed files (to eliminate dead code, inline function calls, etc). https://wiki.php.net/rfc/preload mentioned something similar in the Future Scope.Voting started on May 30th and ends on June 13th
The Discussion section mentioned alternative approaches to this RFC. This feedback is being gathered if it may be useful for other work on Opcache such as moving optimizations into PHP's core.
opcache.file_cache
should be used insteadAlso, would you be interested in moving opcode optimizations and the JIT out of the zend_extension opcache into PHP's core?
0.2: Previously, the ini setting override to disable caching was opcache.no_cache=1
. This was changed to opcache.allow_cache=0
to avoid double negatives and to be consistent with naming of other ini settings such as allow_url_fopen
and allow_url_include
.
0.3: Fix documentation of changes to opcache_get_status()
0.4: Improve documentation of ini settings, add another example use case.
There are various ways the suggestion in Discussion could be implemented. My ideas on a way that could be implemented are below (I'm not familiar enough with opcache to implement that or to be aware of any problems it would cause):
ext/opcache
to a new folder ext/optimizer
Zend/optimizer
). Keep all of the functionality related to caching in the zend_extension Zend Opcache (some build environments may not support or have a use case for any forms of shared memory caching).opcache.enable
and opcache.enable_cli
when the opcode caching is enabled. optimizer.always_optimize=1
or opcache.always_optimize=1
which will ignore that and unconditionally optimize using the optimization passes in opcache.optimization_level
. This would ensure that existing use cases work without modifying php.ini
and won't suffer from high startup time for short-lived processes which don't have opcodes cached.opcache.file_cache_only
. I'm also unfamiliar with how those pointers/mutexes would get released if php crashed.opcache.preload
to only be used when the opcode caching zend_extension is used.To be clear, “move into core” means moving optimizations into Zend/ and making them part of the compilation process (optionally). They shouldn't be in a separate ext/optimizer extension -- that would be not much better than having them in ext/opcache :)
https://externals.io/message/109959 “opcache.no_cache prototype: Opcode optimization without caching”
https://externals.io/message/110187 “[RFC] opcache.no_cache: Opcache optimization without any caching”