[
https://issues.apache.org/jira/browse/CLEREZZA-270?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12896868#action_12896868
]
Oliver Strässer commented on CLEREZZA-270:
------------------------------------------
CollectionNode.java
public List<HierarchyNode> getMembers() {
List<HierarchyNode> nodes;
List<Resource> membersListRdf = getMembersRdf();
readLock().lock();
try {
nodes = new
ArrayList<HierarchyNode>(membersListRdf.size());
Iterator<Resource> membersIter =
membersListRdf.iterator();
while (membersIter.hasNext()) {
.
.
.
.
> Perfomance HierarchyService
> ---------------------------
>
> Key: CLEREZZA-270
> URL: https://issues.apache.org/jira/browse/CLEREZZA-270
> Project: Clerezza
> Issue Type: Improvement
> Reporter: Reto Bachmann-Gmür
>
> By keeping lists of the elements of a collection the HierarchyService is very
> slow for collections with a lot of elements.
> It seems questionable that the lement have to be ordered at all.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.