diff options
-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 |