]> granicus.if.org Git - php/commitdiff
Fix opcache.max_accelerated_files doc in php.ini
authorMartin Hujer <mhujer@gmail.com>
Sat, 1 Apr 2017 14:33:44 +0000 (16:33 +0200)
committerNikita Popov <nikita.ppv@gmail.com>
Sat, 1 Apr 2017 23:05:26 +0000 (01:05 +0200)
As stated in docs: https://secure.php.net/manual/en/opcache.configuration.php#ini.opcache.max-accelerated-files, the maximum is now 1000000
> The maximum value is 100000 in PHP < 5.5.6, and 1000000 in later versions.

php.ini-development
php.ini-production

index 7435e7668b689c65ff94b35addb414e1a2723c3b..50b9dbc37eefaeb0fab4503c835c0131df13c6a5 100644 (file)
@@ -1776,7 +1776,7 @@ ldap.max_links = -1
 ;opcache.interned_strings_buffer=4
 
 ; The maximum number of keys (scripts) in the OPcache hash table.
-; Only numbers between 200 and 100000 are allowed.
+; Only numbers between 200 and 1000000 are allowed.
 ;opcache.max_accelerated_files=2000
 
 ; The maximum percentage of "wasted" memory until a restart is scheduled.
index 75cd780832a3f5c2b9163ccb143978986da63a8a..52a11fce3f92372c1cc2b9b3bd2a6fb0cf034003 100644 (file)
@@ -1776,7 +1776,7 @@ ldap.max_links = -1
 ;opcache.interned_strings_buffer=4
 
 ; The maximum number of keys (scripts) in the OPcache hash table.
-; Only numbers between 200 and 100000 are allowed.
+; Only numbers between 200 and 1000000 are allowed.
 ;opcache.max_accelerated_files=2000
 
 ; The maximum percentage of "wasted" memory until a restart is scheduled.