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.
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
loadClassis 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.