diff options
author | Joe Watkins <krakjoe@php.net> | 2017-01-09 17:08:07 +0000 |
---|---|---|
committer | Joe Watkins <krakjoe@php.net> | 2017-01-09 17:08:07 +0000 |
commit | 28f2959b83ae6f853db7700c9f0dfffa6ce2f794 (patch) | |
tree | 5261bf79b503d64832e8ad5a4cab67bd34648c60 /php.ini-development | |
parent | f1ad170a159fa3970e9acf9008cf06dcde6b92c7 (diff) | |
download | php-git-28f2959b83ae6f853db7700c9f0dfffa6ce2f794.tar.gz |
Revert "set more suitable defaults for opcache in ini and code"
This reverts commit b655f2d6325c64e5da1f016a2742a6abf669ecaf.
This has been deemed unsuitable for 7.0
Diffstat (limited to 'php.ini-development')
-rw-r--r-- | php.ini-development | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/php.ini-development b/php.ini-development index 3b49fea874..346890a36f 100644 --- a/php.ini-development +++ b/php.ini-development @@ -1764,20 +1764,20 @@ ldap.max_links = -1 [opcache] ; Determines if Zend OPCache is enabled -;opcache.enable=1 +;opcache.enable=0 ; Determines if Zend OPCache is enabled for the CLI version of PHP ;opcache.enable_cli=0 ; The OPcache shared memory storage size. -;opcache.memory_consumption=128 +;opcache.memory_consumption=64 ; The amount of memory for interned strings in Mbytes. -;opcache.interned_strings_buffer=8 +;opcache.interned_strings_buffer=4 ; The maximum number of keys (scripts) in the OPcache hash table. ; Only numbers between 200 and 100000 are allowed. -;opcache.max_accelerated_files=10000 +;opcache.max_accelerated_files=2000 ; The maximum percentage of "wasted" memory until a restart is scheduled. ;opcache.max_wasted_percentage=5 |