Skip to content
Discussion options

You must be logged in to vote

If anyone ever reads this...

I greatly improved performance by doing the following:
Disable folder size calculation
Disable subdirectory searching
Disable reading the file owner
Set 'mimeDetect' to 'internal'
Set 'imgLib' to 'gd'.

These were the options I added:
'tmbBgColor' => 'transparent'
'mimeDetect' => 'internal' // avoid using fileinfo if it's slow
'imgLib' => 'gd' // gd is faster than imagick
'statOwner' => false // don't get file owner
'checkSubfolders' => false // don't check subfolders when listing
'dirSize' => false // don't calculate folder sizes
'disabled' => array('resize','tmb') // disables slow operations

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by diegoanavarro
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant