Task #2156
Optimize autowiring in the Object Builder
Status:
Resolved
Priority:
Must have
Assignee:
Category:
Object
Target version:
Start date:
2008-11-12
Due date:
% Done:
100%
Estimated time:
Sprint:
PHP Version:
Has patch:
Complexity:
Description
The whole autowiring process (constructor arguments and setter injection) currently happens while actually creating the object (!). That means: reflection, a lot of analysis etc. on each object instantiation.
Autowiring should be moved to elsewhere and made cacheable.