Reputation: 3363
I need to operate on about 100000 small (5kb) sound files. I think to use FileField and save them on disk. But I am in doubt because there will be folder with 100000 files, I am sure that can seriously hit the perfomance. What can you advise?
Upvotes: 0
Views: 41
Reputation: 25539
I don't think there will be performance issue, because FileField
will only store the file path of the file you have, thus retrieving a file takes O(1) time by following the path.
Upvotes: 1