Remove "activeusers-updated" cache key usage
authorAaron Schulz <aschulz@wikimedia.org>
Thu, 15 Oct 2015 03:51:51 +0000 (20:51 -0700)
committerAaron Schulz <aschulz@wikimedia.org>
Thu, 15 Oct 2015 03:51:51 +0000 (20:51 -0700)
RecentChangesUpdateJob already takes care of this.

Change-Id: I166b37c60fbb05046150a63592fa26fc47027181

includes/specials/SpecialStatistics.php

index 8de6f8b..e06bae0 100644 (file)
@@ -36,8 +36,6 @@ class SpecialStatistics extends SpecialPage {
        }
 
        public function execute( $par ) {
-               global $wgMemc;
-
                $miserMode = $this->getConfig()->get( 'MiserMode' );
 
                $this->setHeaders();
@@ -51,17 +49,6 @@ class SpecialStatistics extends SpecialPage {
                $this->activeUsers = SiteStats::activeUsers();
                $this->hook = '';
 
-               # Set active user count
-               if ( !$miserMode ) {
-                       $key = wfMemcKey( 'sitestats', 'activeusers-updated' );
-                       // Re-calculate the count if the last tally is old...
-                       if ( !$wgMemc->get( $key ) ) {
-                               $dbw = wfGetDB( DB_MASTER );
-                               SiteStatsUpdate::cacheUpdate( $dbw );
-                               $wgMemc->set( $key, '1', 24 * 3600 ); // don't update for 1 day
-                       }
-               }
-
                $text = Xml::openElement( 'table', array( 'class' => 'wikitable mw-statistics-table' ) );
 
                # Statistic - pages