diff options
author | Martin Hujer <mhujer@gmail.com> | 2017-04-01 16:33:44 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2017-04-02 01:05:26 +0200 |
commit | 670041b60ec25e822564d337bae96e82e8d9ac89 (patch) | |
tree | 69ba59735e2b3b26988ab66be5e245e2b8ba2a2d /php.ini-development | |
parent | 46d286574bdf49d568a21283e4f7f6fb91a1480b (diff) | |
download | php-git-670041b60ec25e822564d337bae96e82e8d9ac89.tar.gz |
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.
Diffstat (limited to 'php.ini-development')
-rw-r--r-- | php.ini-development | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/php.ini-development b/php.ini-development index 7435e7668b..50b9dbc37e 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. |