Replies: 1 comment 2 replies
-
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We are experimenting with new and exponentially faster layout algorithms to dramatically improve the loading of asset graphs with 1,000+ assets. Two new feature flags have been added under user settings:
Below are the technical definitions. Network-simplex is the current algorithm which is iterative and is too slow for very large (1,000+ assets) graphs. We are considering changing to one of the other two options (tight-tree or longest-path) and would love your input into which you would prefer and why.
The above definition is very technical but at a high level one of the main differences is that longest-path will align all of the leaf nodes at the bottom where as tight-tree aligns all of the root nodes at the top. Another difference is that when expanding/collapsing subgraphs, longest-path results in graphs that are not drastically different from their unexpanded/uncollapsed counterparts.
Please experiment with the options and let us know what you think!
(Note that you should only enable one of the flags at a time, otherwise tight-tree will take precedence over longest-path)
Beta Was this translation helpful? Give feedback.
All reactions