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
I was trying to do the year's expense accounts, I'm using about 400 lines
I was wondering how many calculations I can do on the same page and I found a drop in performance at 500 lines, and when I get to 800 lines the drop in performance is drastic
The text was updated successfully, but these errors were encountered:
Hi @rbatty19,
Yes, this is a limitation unfortunately and I have been tinkering about a solution for a while now. It's not only the number of lines but the expression being calculated that is the bottleneck. Even a single line expression can crash the app (Ex. 1:9999999). The app calculates expressions line by line and displays the results of the calculations after each line is calculated. Since a certain amount of time is needed to calculate each line, more lines mean decreased performance. And if the expressions are especially complex, the performance hit compounds quickly.
I am working on a interim solution where the calculations can be done in the background so that at least the UI does not crash but it may be a while till it's implemented.
Hi @rbatty19,
I just released v5.3.2 with some performance improvements. Can you please try the new version and let me know if you see any improvement?
I was trying to do the year's expense accounts, I'm using about 400 lines
I was wondering how many calculations I can do on the same page and I found a drop in performance at 500 lines, and when I get to 800 lines the drop in performance is drastic
The text was updated successfully, but these errors were encountered: