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
Did a quick investigation of the load time of BHoM in Grasshopper as well as Excel and found that the load speed of these UIs could be significantly improved by updating the automatic assembly extraction to be filtered to only automatically reflect dlls in the BHoM folder.
As an alternative we could use similar Regex filters that are used in the call to LoadAllAssemblies and also then have the regex loaded by a config that could be set up based on the current environment being loaded. Have not yet tested this latter option, but do not see any real reason why it should not work.
DOing this will significantly improve the load time of at least GH and Excel, as it seems like a lot of the time taken to load them is the assembly decomposition of the full appdomain which can be quite big.
The text was updated successfully, but these errors were encountered:
Description:
Did a quick investigation of the load time of BHoM in Grasshopper as well as Excel and found that the load speed of these UIs could be significantly improved by updating the automatic assembly extraction to be filtered to only automatically reflect dlls in the BHoM folder.
BHoM_Engine/BHoM_Engine/Objects/Global.cs
Lines 100 to 103 in de6a8b0
could be changed to something like:
As an alternative we could use similar Regex filters that are used in the call to LoadAllAssemblies and also then have the regex loaded by a config that could be set up based on the current environment being loaded. Have not yet tested this latter option, but do not see any real reason why it should not work.
DOing this will significantly improve the load time of at least GH and Excel, as it seems like a lot of the time taken to load them is the assembly decomposition of the full appdomain which can be quite big.
The text was updated successfully, but these errors were encountered: