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
If I want to store many small files, a few hundreds to a few thousands, is it better to store them all in a single directory or split to several directories?
The text was updated successfully, but these errors were encountered:
Reading from a directory in FAT is a linear walk so you should always limit how many files you put in one directory. The best value depends on your use case - you can do some benchmarks to find the sweet spot.
But please also note that this crate does not come with a warranty and should not be used to store anything you care about!
If I want to store many small files, a few hundreds to a few thousands, is it better to store them all in a single directory or split to several directories?
The text was updated successfully, but these errors were encountered: