Changes between Version 7 and Version 8 of GROUP_PRO_LIB_PERFORMANCE_R0


Ignore:
Timestamp:
05/09/09 13:31:12 (16 years ago)
Author:
gogov
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GROUP_PRO_LIB_PERFORMANCE_R0

    v7 v8  
    5454 * Each Aspect will have an owner - the BaseProList it belongs to. ProLib Registry's endReadTrack() method will be modified to filter out Aspects which were read but also had their owner read. This will prevent an AutoTracker which reads let's say both a given BaseProList and one of its Aspects, to get updated multiple times. This will prevent "constant" AutoProperties which should get computed only once, to get updated more than 1 time. 
    5555 
     56Another issue which could be fixed is the performance of the findMethodAnnotation(...) methods in the ProLib ReflectionUtil class. 
     57The 
     58{{{ 
     59    public static <T extends Annotation> T findMethodAnnotation(Method m, Class<T> annotationClass); 
     60}}} 
     61simply maps a Class to some Method. 
     62Instead of doing this each time, a helper HashMap can be used to perform memoization of these queries. 
     63 
    5664= Implementation = 
    57 ^(Describe and link the implementation results here (from the wiki or the repository).)^ 
     65 On my machine, these optimizations led to the following results: 
     66 * 4-5 sec startup time reduction for the usage of Aspects. 
     67 * roughly the same for the memoization described above. 
     68 
     69 Prior these optimizations, startup time was ~25 sec. 
     70 --gogov 2009-05-09 13:31 
    5871 
    5972= Testing =