Hello everyone, I have the following question. If ...
# help
r
Hello everyone, I have the following question. If you put a million files in one folder on the server, then during browser requests (to display a picture or download a file), the server will slow down terribly. Therefore, the folder is usually divided into subfolders by dates, for example, by year and month, such as images/users/2022-2/ , images/users/2022-3/. In my backend, I do just that - first I create a subfolder, then I put the file there. But firstly, the subbase does not have a method for creating a folder, and secondly, it says that you can create folders as you like, the correct or incorrect structure is not indicated. We can definitely accumulate a million files in one folder and nothing will happen? That is, is it provided for in the final storage or not?
s
So the concept of folders aren't a thing in s3 storage buckets, its normally just a namespace rather than a folder.
r
@User , thanks a lot!