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
SquirrelFS currently takes longer to mount than other PM file systems; we should add optimizations to improve this.
Possible optimizations:
Perform system scan/index rebuild in parallel.
Serialize indexes/allocators and store them durably during clean unmount so they do not have to be fully reconstructed. We probably want to use a checksum/crash bit to ensure that the serialized structures are consistent and correct before using them.
This won't work in the event of a crash; we'll still need to do the full disk scan then.
Reduce the size/complexity of in-memory data structures to reduce the amount of time it takes to set them up at mount.
The text was updated successfully, but these errors were encountered:
SquirrelFS currently takes longer to mount than other PM file systems; we should add optimizations to improve this.
Possible optimizations:
The text was updated successfully, but these errors were encountered: