Performance: Filesystem configuration
MEDIUM IMPACT
This affects how quickly your application can read and write files, impacting page load speed and response time when accessing storage.
FILESYSTEM_DRIVER=s3 // Using cloud storage (S3) with async upload and caching for media files
FILESYSTEM_DRIVER=local
// Using local disk for all file storage including large media files| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Local disk synchronous file access | N/A | N/A | Blocks server response delaying paint | [X] Bad |
| Cloud storage with async upload and caching | N/A | N/A | Faster server response enables quicker paint | [OK] Good |