diff options
author | Anatol Belski <ab@php.net> | 2016-07-29 13:04:51 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2016-07-29 13:04:51 +0200 |
commit | 1666e80cb90c3c88bfd00522999e862625222e9b (patch) | |
tree | 65673d2a13bc6d6dfc03018eeddda966998a860a | |
parent | 293dd3d7017e3df8f06898d3a7d1c00eb935ee0c (diff) | |
download | php-git-1666e80cb90c3c88bfd00522999e862625222e9b.tar.gz |
document file cache fallback ini directive
-rw-r--r-- | php.ini-development | 5 | ||||
-rw-r--r-- | php.ini-production | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/php.ini-development b/php.ini-development index 57738e34d5..fe9942d83d 100644 --- a/php.ini-development +++ b/php.ini-development @@ -1840,6 +1840,11 @@ ldap.max_links = -1 ; Enables or disables checksum validation when script loaded from file cache. ;opcache.file_cache_consistency_checks=1 +; Implies opcache.file_cache_only=1 for a certain process that failed to +; reattach to the shared memory (for Windows only). Explicitly enabled file +; cache is required. +;opcache.file_cache_fallback=1 + ; Enables or disables copying of PHP code (text segment) into HUGE PAGES. ; This should improve performance, but requires appropriate OS configuration. ;opcache.huge_code_pages=0 diff --git a/php.ini-production b/php.ini-production index 536c1e89dc..35a4ddd85a 100644 --- a/php.ini-production +++ b/php.ini-production @@ -1840,6 +1840,11 @@ ldap.max_links = -1 ; Enables or disables checksum validation when script loaded from file cache. ;opcache.file_cache_consistency_checks=1 +; Implies opcache.file_cache_only=1 for a certain process that failed to +; reattach to the shared memory (for Windows only). Explicitly enabled file +; cache is required. +;opcache.file_cache_fallback=1 + ; Enables or disables copying of PHP code (text segment) into HUGE PAGES. ; This should improve performance, but requires appropriate OS configuration. ;opcache.huge_code_pages=1 |