Re: IoC container performance issues

2009-11-10 Thread Adriaan Joubert
We'll do that. Thanks! Adriaan 2009/11/9 Howard Lewis Ship : > The container is organized for functionality, not performance, with > service lookups because lookups normally occur once. > > Suggestion: create a "lookup" service that has getters for all the > other keys services you want. Inject t

Re: IoC container performance issues

2009-11-09 Thread Howard Lewis Ship
The container is organized for functionality, not performance, with service lookups because lookups normally occur once. Suggestion: create a "lookup" service that has getters for all the other keys services you want. Inject those other services into its implementation. Obtain it from the Registry

IoC container performance issues

2009-11-09 Thread Adriaan Joubert
Hi, we hit some performance issues using the tapestry IoC. The problem is that we have legacy apps where we do need to do a lot of registry look-ups - takes a while to rewrite everything to have services injected via constructors everywhere. In our particular case we have a few hundred services an