* (bug 11874) Inline CSS with !important no longer borken
[lhc/web/wiklou.git] / maintenance / clear_stats.php
index 278c609..5c1dce9 100644 (file)
@@ -2,13 +2,19 @@
 require_once('commandLine.inc');
 
 foreach ( $wgLocalDatabases as $db ) {
+       noisyDelete("$db:stats:request_with_session");
+       noisyDelete("$db:stats:request_without_session");
        noisyDelete("$db:stats:pcache_hit");
        noisyDelete("$db:stats:pcache_miss_invalid");
        noisyDelete("$db:stats:pcache_miss_expired");
        noisyDelete("$db:stats:pcache_miss_absent");
+       noisyDelete("$db:stats:pcache_miss_stub");
        noisyDelete("$db:stats:image_cache_hit");
        noisyDelete("$db:stats:image_cache_miss");
        noisyDelete("$db:stats:image_cache_update");
+       noisyDelete("$db:stats:diff_cache_hit");
+       noisyDelete("$db:stats:diff_cache_miss");
+       noisyDelete("$db:stats:diff_uncacheable");
 }
 
 function noisyDelete( $key ) {
@@ -22,4 +28,4 @@ function noisyDelete( $key ) {
        }*/
        $wgMemc->delete($key);
 }
-?>
+