From d15b114d16b446eea7113a982021c7b03c387b50 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 30 Aug 2017 11:21:43 +0200 Subject: PHP 7.2.0RC1 --- 10-opcache.ini | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to '10-opcache.ini') diff --git a/10-opcache.ini b/10-opcache.ini index cd4c8fa..1bf3d2a 100644 --- a/10-opcache.ini +++ b/10-opcache.ini @@ -1,5 +1,5 @@ ; Enable Zend OPcache extension module -zend_extension=opcache.so +zend_extension=opcache ; Determines if Zend OPCache is enabled opcache.enable=1 @@ -14,7 +14,7 @@ opcache.memory_consumption=128 opcache.interned_strings_buffer=8 ; 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=4000 ; The maximum percentage of "wasted" memory until a restart is scheduled. @@ -43,6 +43,7 @@ opcache.max_accelerated_files=4000 ;opcache.save_comments=1 ; If enabled, a fast shutdown sequence is used for the accelerated code +; Depending on the used Memory Manager this may cause some incompatibilities. ;opcache.fast_shutdown=0 ; Allow file existence override (file_exists, etc.) performance feature. -- cgit