summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2021-02-09 22:53:57 +0300
committerDmitry Stogov <dmitry@zend.com>2021-02-09 22:53:57 +0300
commit4b79dba93202ed5640dff317046ce2fdd42e1d82 (patch)
treec9d35bb7fba407405d14e1fb8c1dd1df3e0f8da7 /NEWS
parent550aee0be3bf256fc1dec5409ad1262c96b23147 (diff)
downloadphp-git-4b79dba93202ed5640dff317046ce2fdd42e1d82.tar.gz
Added Inheritance Cache.
This is a new transparent technology that eliminates overhead of PHP class inheritance. PHP classes are compiled and cached (by opcahce) separately, however their "linking" was done at run-time - on each request. The process of "linking" may involve a number of compatibility checks and borrowing methods/properties/constants form parent and traits. This takes significant time, but the result is the same on each request. Inheritance Cache performs "linking" for unique set of all the depending classes (parent, interfaces, traits, property types, method types involved into compatibility checks) once and stores result in opcache shared memory. As a part of the this patch, I removed limitations for immutable classes (unresolved constants, typed properties and covariant type checks). So now all classes stored in opcache are "immutable". They may be lazily loaded into process memory, if necessary, but this usually occurs just once (on first linking). The patch shows 8% improvement on Symphony "Hello World" app.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 14b189c1a1..5d6db8eb52 100644
--- a/NEWS
+++ b/NEWS
@@ -21,6 +21,9 @@ PHP NEWS
. Fixed bug #80330 (Replace language in APIs and source code/docs).
(Darek ƚlusarczyk)
+- Opcache:
+ . Added inheritance cache. (Dmitry)
+
- OpenSSL:
. Bump minimal OpenSSL version to 1.0.2. (Jakub Zelenka)