You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have investigated, why this extension slows down Magento's page-rendering.
Now I have tracked it down to the Danslo_Aop_Model_Autoloader class.
Method loadClass is not cached in any way, so I experience about 200-300ms delay every pageload.
Seems like there is some caching needed (like the GO! AOP Autoloader does, but is not used in this custom autoloader here).
I'll think about it when I have some sparetime and probably return with a PR.
The text was updated successfully, but these errors were encountered:
Update:
I have implemented a solution, unfortunately my it has a dependency to EcomDev_ComposerAutoload, because this is the autoloader I'm using for Magento 1.x projects right now.
I have investigated, why this extension slows down Magento's page-rendering.
Now I have tracked it down to the Danslo_Aop_Model_Autoloader class.
Method
loadClass
is not cached in any way, so I experience about 200-300ms delay every pageload.Seems like there is some caching needed (like the GO! AOP Autoloader does, but is not used in this custom autoloader here).
I'll think about it when I have some sparetime and probably return with a PR.
The text was updated successfully, but these errors were encountered: