WARNING: HUGE COMMIT
[lhc/web/wiklou.git] / maintenance / stats.php
index 25bb9cc..9c16e12 100644 (file)
@@ -1,4 +1,11 @@
 <?php
+/**
+ * Show statistics from memcached
+ *
+ * @file
+ * @ingroup Maintenance
+ */
+
 require_once('commandLine.inc');
 
 if( get_class( $wgMemc ) == 'FakeMemCachedClient' ) {
@@ -46,4 +53,4 @@ printf( "hits:              %-10d %6.2f%%\n", $hits, $hits/$total*100 );
 printf( "misses:            %-10d %6.2f%%\n", $misses, $misses/$total*100 );
 printf( "uncacheable:       %-10d %6.2f%%\n", $uncacheable, $uncacheable/$total*100 );
 
-?>
+