You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The custom autoloader for the plugin checks for file existence even when it's not a class we know about. In high-load situations, this can lead to large numbers of filesystem access checks for non-existent classes.
As all classes in this project are prefixed with S3_Uploads, we should check for that string before hitting the filesystem.
The text was updated successfully, but these errors were encountered:
The custom autoloader for the plugin checks for file existence even when it's not a class we know about. In high-load situations, this can lead to large numbers of filesystem access checks for non-existent classes.
As all classes in this project are prefixed with
S3_Uploads
, we should check for that string before hitting the filesystem.The text was updated successfully, but these errors were encountered: