New in Symfony 4.3: Improved performance of PropertyAccess
Contributed by
Christian Flothmann
in #29999.
The PropertyAccess component allows to read/write properties from objects and arrays using a simple string notation. It's used by Symfony components like Forms, Security, Validator, Workflow and hundreds of other public projects.
In Symfony 4.3 we improved its performance refactoring the code of the
getValue()
and setValue()
methods. The trick was to add some shortcuts
for cases where we know that we do not need to perform all checks.
Saving so many function calls in such a critical operation results in a 20% to 30% performance improvement for a non-trivial synthetic benchmark. You can expect even better improvements if your app deals with large objects and complex property paths.

Best of all? You don't need to make any change in your application code to benefit from this improvement. Upgrade to Symfony 4.3 when it's released at the end of May 2019 and that's all.
As with any Open-Source project, contributing code or documentation is the most common way to help, but we also have a wide range of sponsoring opportunities.
New in Symfony 4.3: Improved performance of PropertyAccess symfony.com/index.php/blog/new-in-symfony-4-3-improved-performance-of-propertyaccess
Tweet thisComments
Comments are closed.
To ensure that comments stay relevant, they are closed for old posts.
jeremyFreeAgent said on Feb 8, 2019 at 16:44 #1