summaryrefslogtreecommitdiff
path: root/php.ini-development
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2015-09-17 12:51:43 +0300
committerDmitry Stogov <dmitry@zend.com>2015-09-17 12:51:43 +0300
commit41a184be1048eb47e05427008e35345423d03553 (patch)
treeeae380f3719e9c01746c647095b222eb21b92b1a /php.ini-development
parentdcd3bb327f2a7caa7f28c156cc66e940293ba3dc (diff)
downloadphp-git-41a184be1048eb47e05427008e35345423d03553.tar.gz
Added information about new opcache configuration directives
Diffstat (limited to 'php.ini-development')
-rw-r--r--php.ini-development15
1 files changed, 15 insertions, 0 deletions
diff --git a/php.ini-development b/php.ini-development
index 0a4cc87c2e..39ba1fd71b 100644
--- a/php.ini-development
+++ b/php.ini-development
@@ -1829,6 +1829,21 @@ ldap.max_links = -1
; errors.
;opcache.mmap_base=
+; Enables and sets the second level cache directory.
+; It should improve performance when SHM memory is full, at server restart or
+; SHM reset. The default "" disables file based caching.
+;opcache.file_cache=
+
+; Enables or disables opcode caching in shared memory.
+;opcache.file_cache_only=0
+
+; Enables or disables checksum validation when script loaded from file cache.
+;opcache.file_cache_consistency_checks=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
+
[curl]
; A default value for the CURLOPT_CAINFO option. This is required to be an
; absolute path.