com php-src: Fix opcache.max_accelerated_files doc in php.ini: php.ini-development php.ini-production
[email protected] (Nikita Popov)
| Newsgroups | php.cvs |
|---|---|
| Message-ID | <[email protected]> |
Commit: 670041b60ec25e822564d337bae96e82e8d9ac89 Author: Martin Hujer <[email protected]> Sat, 1 Apr 2017 16:33:44 +0200 Committer: Nikita Popov <[email protected]> Sun, 2 Apr 2017 01:05:26 +0200 Parents: 46d286574bdf49d568a21283e4f7f6fb91a1480b Branches: PHP-7.0 PHP-7.1 master Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=670041b60ec25e822564d337bae96e82e8d9ac89 Log: Fix opcache.max_accelerated_files doc in php.ini 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. Changed paths: M php.ini-development M php.ini-production Diff: diff --git a/php.ini-development b/php.ini-development index 7435e76..50b9dbc 100644 --- a/php.ini-development +++ b/php.ini-development @@ -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. diff --git a/php.ini-production b/php.ini-production index 75cd780..52a11fc 100644 --- a/php.ini-production +++ b/php.ini-production @@ -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.