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
Some operations such as parsing or merging of universes are just intrinsically heavy for big applications. We could move them to the background, allowing us to keep the UI responsive even when lots of parsing is happening.
Hints and Thoughts
Web workers are probably the way to go. They are kind of explicitly created JS threads that don't run on the main event loop (unlike, for example, promises).
Acceptance Criteria
The UI should be responsive even during parsing
The text was updated successfully, but these errors were encountered:
Description
Some operations such as parsing or merging of universes are just intrinsically heavy for big applications. We could move them to the background, allowing us to keep the UI responsive even when lots of parsing is happening.
Hints and Thoughts
Web workers are probably the way to go. They are kind of explicitly created JS threads that don't run on the main event loop (unlike, for example, promises).
Acceptance Criteria
The text was updated successfully, but these errors were encountered: