Bug #53556
Epic #55070: Workpackages
Epic #55065: WP: Overall System Performance (Backend and Frontend)
Bug #52949: Speed decrease since 4.5
classLoader->loadClass calls requireOnce twice per class
Status: | Closed | Start date: | 2013-11-12 | |
---|---|---|---|---|
Priority: | Should have | Due date: | ||
Assigned To: | - | % Done: | 100% |
|
Category: | Performance | Spent time: | - | |
Target version: | 6.2.0 | |||
TYPO3 Version: | 6.2 | Is Regression: | No | |
PHP Version: | Sprint Focus: | |||
Complexity: | easy |
Description
Inside classLoad->LoadClass each class is loaded in line 134, but again in line 156.
134:
1// Loads any known class via caching framework
2 if ($require) {
3 if ($this->classesCache->requireOnce($cacheEntryIdentifier) !== FALSE) {
4 $cacheEntryCreated = TRUE;
5 }
6 }
156:
1 if ($cacheEntryCreated && $require) {
2 if ($this->classesCache->requireOnce($cacheEntryIdentifier) !== FALSE) {
3 $cacheEntryCreated = TRUE;
4 }
5 }
By looking into the logic, it seams if a require was successful in the first part, the require is repeated in the second part. You could speed it up by checking if the require was successful in the first part and avoid the second require.
Related issues
History
#1 Updated by Ingo Schmitt over 1 year ago
I'll post a patch at gerrit
#2 Updated by Gerrit Code Review over 1 year ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/25305
#3 Updated by Ernesto Baschny over 1 year ago
- Parent task set to #52949
#4 Updated by Thorsten Kahler over 1 year ago
- Complexity set to easy
I realized that some time ago, too.
#5 Updated by Gerrit Code Review over 1 year ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/25305
#6 Updated by Wouter Wolters over 1 year ago
- Status changed from Under Review to Closed
Not needed anymore. Closed.
#7 Updated by Ingo Schmitt over 1 year ago
- % Done changed from 0 to 100