X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2FSiteStats.php;h=e3cb617e3fa97cb6d92a18e85acad220c3243cc8;hp=745c89166bd0ac498732b9ac37efa971897a50a8;hb=ae031e237eab8e2023d0fe128f9749a8a43ea439;hpb=3ff078137ab823b36000699828c564dabb0ffa55 diff --git a/includes/SiteStats.php b/includes/SiteStats.php index 745c89166b..e3cb617e3f 100644 --- a/includes/SiteStats.php +++ b/includes/SiteStats.php @@ -149,11 +149,12 @@ class SiteStats { */ public static function numberingroup( $group ) { $cache = MediaWikiServices::getInstance()->getMainWANObjectCache(); + $fname = __METHOD__; return $cache->getWithSetCallback( $cache->makeKey( 'SiteStats', 'groupcounts', $group ), $cache::TTL_HOUR, - function ( $oldValue, &$ttl, array &$setOpts ) use ( $group ) { + function ( $oldValue, &$ttl, array &$setOpts ) use ( $group, $fname ) { $dbr = self::getLB()->getConnection( DB_REPLICA ); $setOpts += Database::getCacheSetOptions( $dbr ); @@ -164,7 +165,7 @@ class SiteStats { 'ug_group' => $group, 'ug_expiry IS NULL OR ug_expiry >= ' . $dbr->addQuotes( $dbr->timestamp() ) ], - __METHOD__ + $fname ); }, [ 'pcTTL' => $cache::TTL_PROC_LONG ] @@ -199,11 +200,12 @@ class SiteStats { */ public static function pagesInNs( $ns ) { $cache = MediaWikiServices::getInstance()->getMainWANObjectCache(); + $fname = __METHOD__; return $cache->getWithSetCallback( $cache->makeKey( 'SiteStats', 'page-in-namespace', $ns ), $cache::TTL_HOUR, - function ( $oldValue, &$ttl, array &$setOpts ) use ( $ns ) { + function ( $oldValue, &$ttl, array &$setOpts ) use ( $ns, $fname ) { $dbr = self::getLB()->getConnection( DB_REPLICA ); $setOpts += Database::getCacheSetOptions( $dbr ); @@ -211,7 +213,7 @@ class SiteStats { 'page', 'COUNT(*)', [ 'page_namespace' => $ns ], - __METHOD__ + $fname ); }, [ 'pcTTL' => $cache::TTL_PROC_LONG ]