Performance slowdown V4
Posted: 29 Mar 2023, 03:19
Hi,
Thank you for this great component, I have been a happy user for many years!
I recently upgraded to V4 and found that my categories with lots of images loads a lot slower. I looked into this and the main issue seems to me the Joomla\CMS\Router\Route::_('...') calls we do to get the Route for the different links (Download/Geo/Exif/..). Which leads to PhocaGalleryCategory::getCategoryById($id), which has 2 db calls in it to retrieve the category information.
For a simple test Category View. with 1 image to display, with download/geo/exif links. This is called 20 times...
Not sure if actually need to do this route call for links that are not directly visible, or that we can maybe do without the db calls in getCategoryById($id)?
Thanks,
Thank you for this great component, I have been a happy user for many years!
I recently upgraded to V4 and found that my categories with lots of images loads a lot slower. I looked into this and the main issue seems to me the Joomla\CMS\Router\Route::_('...') calls we do to get the Route for the different links (Download/Geo/Exif/..). Which leads to PhocaGalleryCategory::getCategoryById($id), which has 2 db calls in it to retrieve the category information.
For a simple test Category View. with 1 image to display, with download/geo/exif links. This is called 20 times...
Code: Select all
/components/com_phocagallery/views/category/view.html.php(652): Joomla\CMS\Router\Route::_('...')
/components/com_phocagallery/views/category/view.html.php(652): Joomla\CMS\Router\Route::_('...')
/administrator/components/com_phocagallery/libraries/phocagallery/image/imagefront.php(1086): Joomla\CMS\Router\Route::_('...')
/administrator/components/com_phocagallery/libraries/phocagallery/image/imagefront.php(1086): Joomla\CMS\Router\Route::_('...')
/administrator/components/com_phocagallery/libraries/phocagallery/image/imagefront.php(1086): Joomla\CMS\Router\Route::_('...')
/administrator/components/com_phocagallery/libraries/phocagallery/image/imagefront.php(1086): Joomla\CMS\Router\Route::_('...')
/administrator/components/com_phocagallery/libraries/phocagallery/image/imagefront.php(1086): Joomla\CMS\Router\Route::_('...')
/administrator/components/com_phocagallery/libraries/phocagallery/image/imagefront.php(1086): Joomla\CMS\Router\Route::_('...')
/components/com_phocagallery/views/category/tmpl/default_images.php(226): Joomla\CMS\Router\Route::_('...')
/components/com_phocagallery/views/category/tmpl/default_images.php(226): Joomla\CMS\Router\Route::_('...')
/components/com_phocagallery/views/category/tmpl/default_images.php(226): Joomla\CMS\Router\Route::_('...')
/components/com_phocagallery/views/category/tmpl/default_images.php(226): Joomla\CMS\Router\Route::_('...')
/components/com_phocagallery/views/category/tmpl/default_images.php(226): Joomla\CMS\Router\Route::_('...')
/components/com_phocagallery/views/category/tmpl/default_images.php(226): Joomla\CMS\Router\Route::_('...')
/components/com_phocagallery/views/category/tmpl/default_images.php(260): Joomla\CMS\Router\Route::_('...')
/components/com_phocagallery/views/category/tmpl/default_images.php(260): Joomla\CMS\Router\Route::_('...')
/components/com_phocagallery/views/category/tmpl/default_images.php(260): Joomla\CMS\Router\Route::_('...')
/components/com_phocagallery/views/category/tmpl/default_images.php(260): Joomla\CMS\Router\Route::_('...')
/components/com_phocagallery/views/category/tmpl/default_images.php(260): Joomla\CMS\Router\Route::_('...')
/components/com_phocagallery/views/category/tmpl/default_images.php(260): Joomla\CMS\Router\Route::_('...')
Thanks,