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
Currently, there is only one mutex in the file manager that protects all opened files. That means that if multiple goroutines want to access different files, they will wait for the same lock, which does not make much sense.
At least, there should be a lock for each file.
The text was updated successfully, but these errors were encountered:
Currently, there is only one mutex in the file manager that protects all opened files. That means that if multiple goroutines want to access different files, they will wait for the same lock, which does not make much sense.
At least, there should be a lock for each file.
The text was updated successfully, but these errors were encountered: