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
but there are 2 POST requests for each key store. Why is there a second POST? It seems like a bug to me.
Other than that, I think hitting disk for each key stroke is a bit overkill. When I hit 5 keys in 2 seconds before auto-save kicks in, the UI sends 10 POST requests, even if a single POST request would be enough. I think we can optimize this part.
For each letter, there are 2
POST
calls. If you type 5 letters and wait for the auto-save, there will be 10POST
calls.On the other hand, if you delete something in the editor, auto-save doesn't get triggered.
Last, if you save by
ALT+S
, there is only 1POST
call which is the correct behavior.The text was updated successfully, but these errors were encountered: