Actions
Bug #59449
closedUnnecessary instantiation of object in contentObjectRender
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Content Rendering
Target version:
-
Start date:
2014-06-10
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
5.3
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
Classes implementing this hook:
TYPO3_CONF_VARS['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClass']
are instantiated everytime contentObjectRender is created, even if they are not needed.
They should be lazy loaded.
In an example project we had 6660 calls, and after we only had 1221 calls, which is quite an improvement.
The core EXT:form used this hook intensively, even if you don't have the form setup on a page, it's still slows down the page.
Actions