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
Issie pre-5.1.0 had a memory leak that caused slowdown and then crashing after long use. The leakage scales with edited sheet size so when editing a large sheet this slowdown happens after < 5 minutes.
Cause and Solution
This went away after refactoring the draw block not to use a mutable reference to the last created DOM to manage scrolling.
In the process of fixing this a lot of refactoring was done to reduce DOM listener and message dependence on model.
However - for the record - this was not a bug in the Issie code but introduced in a later release of React 17.
We should therefore find that the old code would also work if we could upgrade to React 18. This depends on upgrading to Elmish v4 which is on the TODO list but not urgent. React 18 has significant differences from 17.
The text was updated successfully, but these errors were encountered:
Describe the bug
Issie pre-5.1.0 had a memory leak that caused slowdown and then crashing after long use. The leakage scales with edited sheet size so when editing a large sheet this slowdown happens after < 5 minutes.
Cause and Solution
model
.However - for the record - this was not a bug in the Issie code but introduced in a later release of React 17.
facebook/react#27892
We should therefore find that the old code would also work if we could upgrade to React 18. This depends on upgrading to Elmish v4 which is on the TODO list but not urgent. React 18 has significant differences from 17.
The text was updated successfully, but these errors were encountered: