(Bug 40860) make purgeRedundantText not fail on pre MW1.5 records
[lhc/web/wiklou.git] / maintenance / clear_stats.php
index b9f2909..4581d53 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /**
- * This script remove all statistics tracking from the cache
- * 
+ * Removes all statistics tracking from the cache.
+ *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  * http://www.gnu.org/copyleft/gpl.html
  *
+ * @file
  * @ingroup Maintenance
  */
 
-require_once( dirname( __FILE__ ) . '/Maintenance.php' );
+require_once( __DIR__ . '/Maintenance.php' );
 
+/**
+ * Maintenance script to remove all statistics tracking from the cache.
+ *
+ * @ingroup Maintenance
+ */
 class clear_stats extends Maintenance {
 
        public function __construct() {
@@ -35,7 +41,6 @@ class clear_stats extends Maintenance {
                        $wgMemc->delete( "$db:stats:request_with_session" );
                        $wgMemc->delete( "$db:stats:request_without_session" );
                        $wgMemc->delete( "$db:stats:pcache_hit" );
-                       $wgMemc->delete( "$db:stats:pcache_miss_invalid" );
                        $wgMemc->delete( "$db:stats:pcache_miss_expired" );
                        $wgMemc->delete( "$db:stats:pcache_miss_absent" );
                        $wgMemc->delete( "$db:stats:pcache_miss_stub" );
@@ -45,9 +50,11 @@ class clear_stats extends Maintenance {
                        $wgMemc->delete( "$db:stats:diff_cache_hit" );
                        $wgMemc->delete( "$db:stats:diff_cache_miss" );
                        $wgMemc->delete( "$db:stats:diff_uncacheable" );
+                       $wgMemc->delete( "$db:stats:job-insert" );
+                       $wgMemc->delete( "$db:stats:job-pop" );
                }
        }
 }
 
 $maintClass = "clear_stats";
-require_once( DO_MAINTENANCE );
+require_once( RUN_MAINTENANCE_IF_MAIN );