Changes between Version 7 and Version 8 of GROUP_PRO_LIB_PERFORMANCE_R0
- Timestamp:
- 05/09/09 13:31:12 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GROUP_PRO_LIB_PERFORMANCE_R0
v7 v8 54 54 * 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. 55 55 56 Another issue which could be fixed is the performance of the findMethodAnnotation(...) methods in the ProLib ReflectionUtil class. 57 The 58 {{{ 59 public static <T extends Annotation> T findMethodAnnotation(Method m, Class<T> annotationClass); 60 }}} 61 simply maps a Class to some Method. 62 Instead of doing this each time, a helper HashMap can be used to perform memoization of these queries. 63 56 64 = 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 58 71 59 72 = Testing =