Re: Profiling Modules

2017-07-02 Thread Luke Sandberg
ProvisionListeners should be sufficient for this, though as Stephan says I would start with abnormal profiler. On Fri, Jun 30, 2017 at 11:32 PM Stephan Classen wrote: > While Guice AOP is a nice and cool feature and I love to use it for > certain use cases I also found that

Re: Profiling Modules

2017-07-01 Thread Stephan Classen
While Guice AOP is a nice and cool feature and I love to use it for certain use cases I also found that it becomes a performance issue if used to heavely. Because of this and the limitations you mention in your question I recommend using a classic profiler to investigate performance issues. For

Profiling Modules

2017-06-30 Thread Max Aller
We're trying to improve performance of our Guice Modules, and to do that we'd like to figure out how long Guice is taking calling our @Provides methods. `bindListener` *almost* lets us do that, but it only works for objects instantiated with Guice, not Guice modules themselves, of course, and