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
Currently each plugin loads in background and interleaves the main thread by using local event loops. This is error prone and also fills the thread pool such that it blocks queries. As a consequence the UI lags due to the queries being in the thread pools queue. This should rather be implemented such that there this only one background thread which handles loading plugins. It seems like loading plugins can't be parallelize anyway, at least on MacOS.
The text was updated successfully, but these errors were encountered:
Currently each plugin loads in background and interleaves the main thread by using local event loops. This is error prone and also fills the thread pool such that it blocks queries. As a consequence the UI lags due to the queries being in the thread pools queue. This should rather be implemented such that there this only one background thread which handles loading plugins. It seems like loading plugins can't be parallelize anyway, at least on MacOS.
The text was updated successfully, but these errors were encountered: