[
https://issues.apache.org/jira/browse/TAP5-2335?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14083347#comment-14083347
]
Hudson commented on TAP5-2335:
------------------------------
ABORTED: Integrated in tapestry-trunk-freestyle #1293 (See
[https://builds.apache.org/job/tapestry-trunk-freestyle/1293/])
TAP5-2335: Spot-optimization to the NamedSet collection (hlship: rev
b0f280657b939fb1efb91cfc4c7d6e2560df19fc)
* tapestry-core/src/main/java/org/apache/tapestry5/internal/util/NamedSet.java
> Decrease number of operations with HashMap #2
> ---------------------------------------------
>
> Key: TAP5-2335
> URL: https://issues.apache.org/jira/browse/TAP5-2335
> Project: Tapestry 5
> Issue Type: Improvement
> Reporter: Michael Mikhulya
> Assignee: Howard M. Lewis Ship
> Fix For: 5.4
>
> Attachments:
> 0001-TAP5-2335-Decrease-number-of-operations-with-HashMap.patch
>
>
> During profiling of tapestry framework I found that HashMap is actively used
> in following code:
> {code:title=NamedSet.java}
> public void eachValue(Worker<T> worker)
> {
> F.flow(getValues()).each(worker);
> }
> {code}
> Here HashSet (which internally uses HashMap) is created inside getValues()
> only to iterate over it.
> I changed code to use ArrayList instead of HashSet.
> With following patch time per request decreased on 3.5 ms (7.4% of overall
> time). Measurements were done with apache benchmark on a real application
> after warm up phase.
--
This message was sent by Atlassian JIRA
(v6.2#6252)