You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our collapsed compound nodes contain a lot of sub-nodes, when calling API getAllCollapsedChildrenRecursively, it takes more than 30 seconds to return. The following code (expandCollapseUtilities.getCollapsedChildrenRecursively) inside a For loop is very expensive:
Our collapsed compound nodes contain a lot of sub-nodes, when calling API
getAllCollapsedChildrenRecursively
, it takes more than 30 seconds to return. The following code (expandCollapseUtilities.getCollapsedChildrenRecursively) inside a For loop is very expensive:collapsedChildren = collapsedChildren.union(children[i]);
Remove it and do "collapsedChildren = collapsedChildren.union(children);" outside of the loop is much faster
The text was updated successfully, but these errors were encountered: