[
https://issues.apache.org/jira/browse/ARTEMIS-710?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15453041#comment-15453041
]
ASF GitHub Bot commented on ARTEMIS-710:
----------------------------------------
Github user asfgit closed the pull request at:
https://github.com/apache/activemq-artemis/pull/745
> Avoid inefficient iteration over Map
> ------------------------------------
>
> Key: ARTEMIS-710
> URL: https://issues.apache.org/jira/browse/ARTEMIS-710
> Project: ActiveMQ Artemis
> Issue Type: Improvement
> Components: Broker
> Affects Versions: 1.4.0
> Reporter: Martin Styk
> Priority: Minor
>
> On few places in Artemis code, inefficient iteration over Map object is
> present.
> Example
> {code:java}
> Map<Thread, StackTraceElement[]> threadMap = Thread.getAllStackTraces();
> for (Thread thread : threadMap.keySet()) {
> StackTraceElement[] stack = threadMap.get(thread);
> ....
> {code}
> To make it more efficient, we should use Map.Entry instead of getting keySet
> and than finding corresponding value.
> Places where this could be changed
> * ScaleDownHandler#scaleDownDuplicateIDs
> * PostOfficeJournalLoader#recoverPendingPageCounters
> * ActiveMQTestBase#tearDown
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)