[ https://issues.apache.org/jira/browse/OPENJPA-1151?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Donald Woods updated OPENJPA-1151: ---------------------------------- Affects Version/s: 2.0.0 1.3.0 Fix Version/s: 2.0.0-M3 1.3.0 Code patch already applied by Mike on June 30th to 1.3.x and trunk. Only testcase updates need to be applied now. > Cache the current-time timestamp in AbstractQueryCache.onTypesChanged() > ----------------------------------------------------------------------- > > Key: OPENJPA-1151 > URL: https://issues.apache.org/jira/browse/OPENJPA-1151 > Project: OpenJPA > Issue Type: Improvement > Components: jdbc > Affects Versions: 1.3.0, 2.0.0 > Reporter: Jody Grassel > Assignee: Donald Woods > Priority: Trivial > Fix For: 1.3.0, 2.0.0-M3 > > Attachments: OpenJPA-trunk-JIRA1151-tests.patch, OpenJPA-trunk-JIRA1151.patch > > > AbstractQueryCache.java contains the following block: > for (Object o: changedTypes) { > String name = ((Class) o).getName(); > if(!changedClasses.containsKey(name)) > changedClasses.put(name, > new Long(System.currentTimeMillis())); > } > Suggesting caching the Long containing the entity type's last-modification timestamp outside of the for-loop to improve performance and reduce memory usage. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.