This document summarizes Julien Pauli's presentation on performance considerations with PHP 7. The key points are:
1) PHP 7 introduced a new compiler based on an AST that performs optimizations like resolving static expressions and function calls at compile time.
2) PHP 7 also introduced optimizations for references, hashtables, strings and encapsed strings. References are copied less, hashtables use less memory, strings are interned and encapsed strings build strings more efficiently.
3) Future versions of PHP will continue optimizing the compiler and intoduce a JIT compiler for further performance improvements. PHP 8 will be released when these optimizations are ready.