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 think the slider for setting the amount of last changes could use a delay in evaluation (if that is the problem here): it gets slow-ish and lags a bit, when you slide it from 10 to 100. I assume it starts evaluating immediately when the value changes (but I did not check, so correct me if that's wrong) - is there a way to add a debounce in elixir? Maybe delaying evaluation for 3 secs would do the trick.
The text was updated successfully, but these errors were encountered:
Currently the server makes a complete roundtrip to the database to evaluate the n changes. Makes probably more sense to load the maximum once at the beginning and use the selected n to trim down that list.
I think the slider for setting the amount of last changes could use a delay in evaluation (if that is the problem here): it gets slow-ish and lags a bit, when you slide it from 10 to 100. I assume it starts evaluating immediately when the value changes (but I did not check, so correct me if that's wrong) - is there a way to add a debounce in elixir? Maybe delaying evaluation for 3 secs would do the trick.
The text was updated successfully, but these errors were encountered: