From 1666e80cb90c3c88bfd00522999e862625222e9b Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Fri, 29 Jul 2016 13:04:51 +0200 Subject: [PATCH] document file cache fallback ini directive --- php.ini-development | 5 +++++ php.ini-production | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/php.ini-development b/php.ini-development index 57738e34d5a..fe9942d83de 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 536c1e89dcc..35a4ddd85a4 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