[Fixed]-Best way to store multiple (more than 100000) binary files in Django

1👍

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.

Leave a comment