summaryrefslogtreecommitdiff
path: root/php.ini-development
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2019-04-05 19:46:11 +0200
committerPeter Kokot <peterkokot@gmail.com>2019-04-05 19:46:11 +0200
commitf9b5d9c2a7f5830464e867a34fc6323150494f04 (patch)
tree4f1669622c1df92deeb4c98944473841cca23fe4 /php.ini-development
parentade73c360cbe9d533214e8b7cb26c514c29256fb (diff)
parent1dd5ab0cadcc4f2920316b0d24f00a48f92424c8 (diff)
downloadphp-git-f9b5d9c2a7f5830464e867a34fc6323150494f04.tar.gz
Merge branch 'PHP-7.4'
* PHP-7.4: Add opcache.lockfile_path and opcache.lockfile_path to ini settings
Diffstat (limited to 'php.ini-development')
-rw-r--r--php.ini-development10
1 files changed, 9 insertions, 1 deletions
diff --git a/php.ini-development b/php.ini-development
index 766e8ec3d3..374d26cc44 100644
--- a/php.ini-development
+++ b/php.ini-development
@@ -1687,7 +1687,7 @@ zend.assertions = 1
;mbstring.http_output_conv_mimetype=
; This directive specifies maximum stack depth for mbstring regular expressions. It is similar
-; to the pcre.recursion_limit for PCRE.
+; to the pcre.recursion_limit for PCRE.
; Default: 100000
;mbstring.regex_stack_limit=100000
@@ -1893,6 +1893,14 @@ ldap.max_links = -1
; http://php.net/opcache.preload
;opcache.preload=
+; Prevents caching files that are less than this number of seconds old. It
+; protects from caching of incompletely updated files. In case all file updates
+; on your site are atomic, you may increase performance by setting it to "0".
+;opcache.file_update_protection=2
+
+; Absolute path used to store shared lockfiles (for *nix only).
+;opcache.lockfile_path=/tmp
+
[curl]
; A default value for the CURLOPT_CAINFO option. This is required to be an
; absolute path.