User uploads folder structure
问题 Can the folder structure for user uploads have any impact on performance as the site grows? For instance, I considered this structure for storing photos/albums: Public folder └── Uploads └── Users └── User ID └── Album ID - contains all photos in the album Thanks in advance! 回答1: Can the folder structure for user uploads have any impact on performance as the site grows? Yes it can. If you store too many files in single directory it may slow down operations. Posted structure is very good. Edit