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
{{ message }}
This repository was archived by the owner on Dec 18, 2023. It is now read-only.
Put depenencies on a Map<String, List<Dependency>> instead of List
This will save a filter per module, changing the required time from
O((number of modules)*(number of dependencies)) to O(number of
dependencies). In the case of large projects this could save
some seconds. For example, creating a project with 1000 modules and a
full topology takes ~193 seconds using a List, while using a Map takes
~189 seconds.
0 commit comments