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
A lot of the read int and read string, which make up a large part of the daemon update call is spent opening and closing files often.
This time can be seen in read_int in green.
Here is how much of update read_int and read_str account for.
If we saved the files opened as refs, we could remove all of the open/close (blue) blocks in the update (green).
The text was updated successfully, but these errors were encountered:
A lot of the read int and read string, which make up a large part of the daemon update call is spent opening and closing files often.
This time can be seen in read_int in green.
Here is how much of update read_int and read_str account for.
If we saved the files opened as refs, we could remove all of the open/close (blue) blocks in the update (green).
The text was updated successfully, but these errors were encountered: