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
Is there a package that will implement this for us?
We may need to create an LRU cache that we check the size of and remove files before downloading more. The tricky part about this being LRU cache is that we manipulate atime and mtime to match the cloud exactly. Perhaps we can abuse ctime to store the cached date so that we can sort by what has been downloaded most recently? Or maybe we stop overriding atime and trust that?
Also needs research: are there fast platform independent ways to estimate size of a directory?
The text was updated successfully, but these errors were encountered:
Is there a package that will implement this for us?
We may need to create an LRU cache that we check the size of and remove files before downloading more. The tricky part about this being LRU cache is that we manipulate
atime
andmtime
to match the cloud exactly. Perhaps we can abuse ctime to store the cached date so that we can sort by what has been downloaded most recently? Or maybe we stop overridingatime
and trust that?Also needs research: are there fast platform independent ways to estimate size of a directory?
The text was updated successfully, but these errors were encountered: