summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2015-06-15 13:39:45 +0300
committerDmitry Stogov <dmitry@zend.com>2015-06-15 13:39:45 +0300
commitea14c20ffb3f4a9e24f27ace81f70b2b0025ae15 (patch)
tree46ea651b6ee65f47cc95c184a8a9a92b796d5f3e
parent6e3e1e31e92fd57f12471461fc3496ac057757b0 (diff)
downloadphp-git-ea14c20ffb3f4a9e24f27ace81f70b2b0025ae15.tar.gz
Added notes about opcahce.file_cache.
-rw-r--r--UPGRADING7
1 files changed, 7 insertions, 0 deletions
diff --git a/UPGRADING b/UPGRADING
index 75b6c30f6d..7fc1ddb382 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -545,6 +545,13 @@ Other
. Added support for cryptographically secure user land RNG
(RFC: https://wiki.php.net/rfc/easy_userland_csprng)
+- Opcache
+ . Added second level file based opcode cache (experimental - disabled by
+ default). To enable it, PHP should be configured and built with
+ --enable-opcache-file, then opcache.file_cache=<DIR> configuration directive
+ should be set in php.ini. The second level cache may improve performance
+ at server restart or SHM reset.
+
- OpenSSL
. Added "alpn_protocols" SSL context option allowing encrypted client/server
streams to negotiate alternative protocols using the ALPN TLS extension when