2006-01-28 08:22:24 +00:00
|
|
|
<?php
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
|
|
$optionsWithArgs = array( 'i' );
|
|
|
|
|
|
|
|
|
|
require_once('commandLine.inc');
|
|
|
|
|
|
2006-10-02 17:04:13 +00:00
|
|
|
function microtime_float()
|
|
|
|
|
{
|
|
|
|
|
list($usec, $sec) = explode(" ", microtime());
|
|
|
|
|
return ((float)$usec + (float)$sec);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-01-28 08:22:24 +00:00
|
|
|
#$wgDebugLogFile = '/dev/stdout';
|
|
|
|
|
|
|
|
|
|
if ( isset( $args[0] ) ) {
|
|
|
|
|
$wgMemCachedServers = array( $args[0] );
|
|
|
|
|
}
|
|
|
|
|
if ( isset( $options['i'] ) ) {
|
|
|
|
|
$iterations = $options['i'];
|
|
|
|
|
} else {
|
|
|
|
|
$iterations = 100;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach ( $wgMemCachedServers as $server ) {
|
|
|
|
|
print "$server ";
|
|
|
|
|
$mcc = new MemCachedClientforWiki( array('persistant' => true) );
|
|
|
|
|
$mcc->set_servers( array( $server ) );
|
|
|
|
|
$set = 0;
|
|
|
|
|
$incr = 0;
|
|
|
|
|
$get = 0;
|
|
|
|
|
$time_start=microtime_float();
|
|
|
|
|
for ( $i=1; $i<=$iterations; $i++ ) {
|
|
|
|
|
if ( !is_null( $mcc->set( "test$i", $i ) ) ) {
|
|
|
|
|
$set++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for ( $i=1; $i<=$iterations; $i++ ) {
|
|
|
|
|
if ( !is_null( $mcc->incr( "test$i", $i ) ) ) {
|
|
|
|
|
$incr++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for ( $i=1; $i<=$iterations; $i++ ) {
|
|
|
|
|
$value = $mcc->get( "test$i" );
|
|
|
|
|
if ( $value == $i*2 ) {
|
|
|
|
|
$get++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$exectime=microtime_float()-$time_start;
|
|
|
|
|
|
|
|
|
|
print "set: $set incr: $incr get: $get time: $exectime\n";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-06-29 01:19:14 +00:00
|
|
|
|