summaryrefslogtreecommitdiff
path: root/maintenance/storage/testCompression.php
diff options
context:
space:
mode:
Diffstat (limited to 'maintenance/storage/testCompression.php')
-rw-r--r--maintenance/storage/testCompression.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/maintenance/storage/testCompression.php b/maintenance/storage/testCompression.php
index 9c96c9f8..e2718325 100644
--- a/maintenance/storage/testCompression.php
+++ b/maintenance/storage/testCompression.php
@@ -1,7 +1,7 @@
<?php
$optionsWithArgs = array( 'start', 'limit', 'type' );
-require( dirname(__FILE__).'/../commandLine.inc' );
+require( dirname( __FILE__ ) . '/../commandLine.inc' );
if ( !isset( $args[0] ) ) {
echo "Usage: php testCompression.php [--type=<type>] [--start=<start-date>] [--limit=<num-revs>] <page-title>\n";
@@ -26,10 +26,10 @@ $type = isset( $options['type'] ) ? $options['type'] : 'ConcatenatedGzipHistoryB
$dbr = wfGetDB( DB_SLAVE );
-$res = $dbr->select(
+$res = $dbr->select(
array( 'page', 'revision', 'text' ),
'*',
- array(
+ array(
'page_namespace' => $title->getNamespace(),
'page_title' => $title->getDBkey(),
'page_id=rev_page',
@@ -56,9 +56,9 @@ foreach ( $res as $row ) {
$serialized = serialize( $blob );
$t += microtime( true );
-#print_r( $blob->mDiffMap );
+# print_r( $blob->mDiffMap );
-printf( "%s\nCompression ratio for %d revisions: %5.2f, %s -> %d\n",
+printf( "%s\nCompression ratio for %d revisions: %5.2f, %s -> %d\n",
$type,
count( $hashes ),
$uncompressedSize / strlen( $serialized ),
@@ -73,7 +73,7 @@ foreach ( $keys as $id => $key ) {
$text = $blob->getItem( $key );
if ( md5( $text ) != $hashes[$id] ) {
echo "Content hash mismatch for rev_id $id\n";
- #var_dump( $text );
+ # var_dump( $text );
}
}
$t += microtime( true );