diff options
author | Markus Staab <maggus.staab@googlemail.com> | 2017-01-11 11:51:25 +0100 |
---|---|---|
committer | Joe Watkins <krakjoe@php.net> | 2017-01-11 11:18:10 +0000 |
commit | ef42f49470c2d5a4c11aa67ebd78e43666555c53 (patch) | |
tree | 5fcc862b434a679577cf340e17ec6efe8a8b971b | |
parent | b2782c6dc5f46aa6bca3b0bc5b8fa9bc8384e09b (diff) | |
download | php-git-ef42f49470c2d5a4c11aa67ebd78e43666555c53.tar.gz |
added a note to opache.fast_shutdown why its not enabled by default in php.ini
-rw-r--r-- | php.ini-development | 1 | ||||
-rw-r--r-- | php.ini-production | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/php.ini-development b/php.ini-development index 346890a36f..7435e7668b 100644 --- a/php.ini-development +++ b/php.ini-development @@ -1805,6 +1805,7 @@ ldap.max_links = -1 ;opcache.save_comments=1 ; If enabled, a fast shutdown sequence is used for the accelerated code +; Depending on the used Memory Manager this may cause some incompatibilities. ;opcache.fast_shutdown=0 ; Allow file existence override (file_exists, etc.) performance feature. diff --git a/php.ini-production b/php.ini-production index cd80502c5c..75cd780832 100644 --- a/php.ini-production +++ b/php.ini-production @@ -1805,6 +1805,7 @@ ldap.max_links = -1 ;opcache.save_comments=1 ; If enabled, a fast shutdown sequence is used for the accelerated code +; Depending on the used Memory Manager this may cause some incompatibilities. ;opcache.fast_shutdown=0 ; Allow file existence override (file_exists, etc.) performance feature. |