Merge "Put skin classes in the Autoloader"
[lhc/web/wiklou.git] / maintenance / clear_stats.php
index 820f2b9..61314e6 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /**
  * This script remove 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
@@ -36,7 +36,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" );
@@ -46,9 +45,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 );