mirror of
https://github.com/kusti8/proton-native.git
synced 2026-05-15 14:15:50 -06:00
[GH-ISSUE #91] Opening a file in Notepad example is really slow. #56
Labels
No labels
bug
documentation
enhancement
libui issue
pull-request
question
wait for libui implementation
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/proton-native#56
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @parro-it on GitHub (May 2, 2018).
Original GitHub issue: https://github.com/kusti8/proton-native/issues/91
On my machine, opening a 30Kb file take ~11s.
The same file opened in
libui-nodenodepad example take < 1s@kusti8 commented on GitHub (May 3, 2018):
Yeah I looked through the performance logs and it seems that its all due to react processing. Once the state gets so big, the diffs that it has to do get too big. Most work is being done in
commitAllHostEffects, going all the way down toperformWork. There's nothing I can really do.