blob: aef6d6dba6a661267a695114d3e8b4826744fe32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
<?php
/**
* This script makes several 'set', 'incr' and 'get' requests on every
* memcached server and shows a report.
*
* $Id: mctest.php 37886 2008-07-21 17:06:35Z greg $
* @file
* @ingroup Maintenance
*/
$optionsWithArgs = array( 'i' );
require_once('commandLine.inc');
function microtime_float()
{
list($usec, $sec) = explode(" ", microtime());
return ((float)$usec + (float)$sec);
}
#$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";
}
|