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
Building the tree only takes a second or two in the worse cases. It appears that the issue is to render the TreeView. Let's see in microsoft/fluentui-blazor#1855 if there is some performance opportunities there.
Since b8a313b it seems like the filtering can take several seconds to execute. So, that filtering could be done in a worker for a better experience. Though, workers have a shared-nothing design, sharing data is only done through message passing. Passing the trace to a worker would mean serializing gigabytes of data.
To avoid blocking the UI. https://github.com/Tewr/BlazorWorker could help.
The text was updated successfully, but these errors were encountered: