[FEATURE] Cache negative ux_* look up in autoloader
For every class instance that is requested via t3lib_div::makeInstance(), a lookup for ux_"classname" is done and that class is instantiated if it exists, instead of the original class. If no ux_ class is found with class_exists(), the requested class is instantiated. This is the basic "XCLASS" handling in the core. The patch adds autoloader rows for unsuccessful (NULL) ux_* lookups to the autoloader cache file. The file is updated during shutdown. This way the information a XCLASS does NOT exist is cached between consecutive calls. This leads to a performance improvement and is an advantage over the current makeInstance class name cache that worked only for one call. The old "cache for one call only" code is dropped with the patch. Change-Id: I70573146600d658d218dc9b31694748341fc7a20 Resolves: #37915 Releases: 6.0 Reviewed-on: http://review.typo3.org/11943 Reviewed-by: Susanne Moog Tested-by: Susanne Moog Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
Showing
- t3lib/cache/class.t3lib_cache_factory.php 3 additions, 6 deletionst3lib/cache/class.t3lib_cache_factory.php
- t3lib/class.t3lib_autoloader.php 15 additions, 4 deletionst3lib/class.t3lib_autoloader.php
- t3lib/class.t3lib_cache.php 0 additions, 2 deletionst3lib/class.t3lib_cache.php
- t3lib/class.t3lib_div.php 1 addition, 29 deletionst3lib/class.t3lib_div.php
- tests/Unit/t3lib/class.t3lib_autoloaderTest.php 24 additions, 0 deletionstests/Unit/t3lib/class.t3lib_autoloaderTest.php
Please register or sign in to comment