mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-05-14 21:35:59 +02:00
fixes #1380 avoid performance issue with high volume albums
This commit is contained in:
@@ -207,7 +207,7 @@ $category['nb_images_associated_outside'] = 0;
|
|||||||
if ($category['nb_images_recursive'] > 0)
|
if ($category['nb_images_recursive'] > 0)
|
||||||
{
|
{
|
||||||
// if we don't have "too many" photos, it's faster to compute the orphans with MySQL
|
// if we don't have "too many" photos, it's faster to compute the orphans with MySQL
|
||||||
if ($category['nb_images_recursive'] < 30000)
|
if ($category['nb_images_recursive'] < 1000)
|
||||||
{
|
{
|
||||||
$query = '
|
$query = '
|
||||||
SELECT
|
SELECT
|
||||||
|
|||||||
Reference in New Issue
Block a user