-
Notifications
You must be signed in to change notification settings - Fork 16
/
cache-benchmark.php
903 lines (831 loc) · 27.3 KB
/
cache-benchmark.php
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* @category Netzarbeiter
* @package Netzarbeiter_Cache
* @copyright Copyright (c) 2011 Vinai Kopp http://netzarbeiter.com, Colin Mollenhour http://colin.mollenhour.com
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*
* @author Vinai Kopp http://netzarbeiter.com, Colin Mollenhour http://colin.mollenhour.com
*/
/**
* Usage: php shell/cache-benchmark.php [command] [options]
* This script needs read/write permissions to the magento cache files
* if using a filesystem-based backend.
*/
require_once 'shell/abstract.php';
ini_set('memory_limit','1024M'); // Needs lots of memory for generating larger datasets
class benchmark extends Mage_Shell_Abstract
{
/**
* @var array $_tags Array of tags to benchmark
*/
protected $_tags = array();
/**
* @var int $_maxTagLength The length of the longest cache tag
* @see benchmark::_getLongestTagLength()
*/
protected $_maxTagLength = 0;
/**
* @var string $_cachePrefix The cache tag and id prefix for this Magento instance
* @see benchmark::_getCachePrefix()
*/
protected $_cachePrefix = '';
/**
* Evaluate arguments and run or init benchmark.
*/
public function run()
{
if($this->getArg('init')) {
$this->_initDataset();
}
else if($this->getArg('clean')) {
Mage::app()->getCache()->clean();
}
else if($this->getArg('load')) {
$this->_echoCacheConfig();
$this->_loadDataset();
}
else if($this->getArg('tags')) {
$this->_runTagBenchmark();
}
else if($this->getArg('ops')) {
$this->_runOpsBenchmark();
}
else if($this->getArg('analyze')) {
$this->_analyzeCache();
}
else if($this->getArg('comp_test')) {
$this->_compTest();
}
else {
echo $this->usageHelp();
}
}
protected function _getTestDir()
{
$name = $this->getArg('name') ?: 'default';
$baseDir = Mage::getBaseDir('var').'/cachebench';
if( ! is_dir($baseDir)) {
mkdir($baseDir);
}
return $baseDir.'/'.$name;
}
/**
* Initialize a dataset to files on disk (not loaded into cache)
*
--keys <num> Number of cache keys (default to 10000)
--tags <num> Number of cache tags (default to 2000)
--min-tags <num> The min number of tags to use for each record (default 0)
--max-tags <num> The max number of tags to use for each record (default 15)
--min-rec-size <num> The smallest size for a record (default 1)
--max-rec-size <num> The largest size for a record (default 1024)
--clients <num> The number of clients for multi-threaded testing (defaults to 4)
--ops <num> The number of operations per client (defaults to 10000)
--write-chance The chance-factor that a key will be overwritten (defaults to 1000)
--clean-chance The chance-factor that a tag will be cleaned (defaults to 5000)
--seed <num> The random number generator seed (default random)
*/
protected function _initDataset()
{
$name = $this->getArg('name') ?: 'default';
$testDir = $this->_getTestDir();
if (is_dir($testDir)) {
array_map('unlink', glob("$testDir/*.*"));
}
if ( ! is_dir($testDir)) {
mkdir($testDir);
}
// Dump command-line
file_put_contents("$testDir/cli.txt", 'php '.implode(' ',$_SERVER['argv']));
$numKeys = $this->getArg('keys') ?: 10000;
$numTags = $this->getArg('tags') ?: 2000;
$minTags = $this->getArg('min-tags') ?: 0;
$maxTags = $this->getArg('max-tags') ?: 15;
$minSize = $this->getArg('min-rec-size') ?: 1;
$maxSize = $this->getArg('max-rec-size') ?: 1024;
$numClients = $this->getArg('clients') ?: 4;
if($this->getArg('seed')) {
mt_srand( (int) $this->getArg('seed'));
}
$numOps = $this->getArg('ops') ?: 50000;
$writeFactor = $this->getArg('write-chance') ?: 1000;
$cleanFactor = $this->getArg('clean-chance') ?: 1000;
$tags = array();
$lengths = array();
$reads = array();
$writes = array();
$expires = array(false,false,false,false,false,'rand'); // 1/6th of keys expire
echo "Generating cache data...\n";
$progressBar = $this->_getProgressBar(0, $numKeys / 100);
// Generate tags
$this->_createTagList($numTags);
$smallestKey = FALSE;
$largestKey = 0;
$totalKeyData = 0;
$leastTags = FALSE;
$mostTags = 0;
$totalTags = 0;
if( ! ($fp = fopen("$testDir/data.txt", 'w'))) {
die("Could not open $testDir/data.txt");
}
fwrite($fp, "$numKeys\r\n");
// Generate data
for($i = 0; $i < $numKeys; $i++) {
if($i % 100 == 0) {
$progressBar->update(($i / 100)+1);
}
$key = md5($i);
$expireAt = $expires[mt_rand(0,count($expires)-1)];
if($expireAt == 'rand') {
$expireAt = mt_rand(10, 14400);
}
$data = array(
'key' => $key,
'data' => $this->_getRandomData($minSize, $maxSize),
'tags' => $this->_getRandomTags($minTags, $maxTags),
'expires' => $expireAt
);
// Store length since data length per key will usually be constant
$lengths[$key] = strlen($data['data']);
$tags[$key] = $data['tags'];
// Some keys are read more frequently
$popularity = mt_rand(1,100);
for($j = 0; $j < $popularity; $j++) {
$reads[] = $key;
}
// Some keys are written more frequently
$volatility = mt_rand(1,100);
for($j = 0; $j < $volatility; $j++) {
$writes[] = $key;
}
// Stats
$dataLen = $lengths[$key];
if($smallestKey === FALSE || $dataLen < $smallestKey) $smallestKey = $dataLen;
if($dataLen > $largestKey) $largestKey = $dataLen;
$totalKeyData += $dataLen;
$tagCount = count($data['tags']);
if($leastTags === FALSE || $tagCount < $leastTags) $leastTags = $tagCount;
if($tagCount > $mostTags) $mostTags = $tagCount;
$totalTags += $tagCount;
fwrite($fp, json_encode($data)."\r\n");
}
fclose($fp);
$progressBar->finish();
// Dump data
$averageKey = $totalKeyData / $numKeys;
$averageTags = $totalTags / $numKeys;
$description = <<<TEXT
Total Keys: $numKeys
Smallest Key Data: $smallestKey
Largest Key Data: $largestKey
Average Key Data: $averageKey
Total Key Data: $totalKeyData
Total Tags: $numTags
Least Tags/key: $leastTags
Most Tags/key: $mostTags
Average Tags/key: $averageTags
Total Tags/key: $totalTags
TEXT;
echo "$description\n";
file_put_contents("$testDir/description.txt", $description);
echo "Generating operations...\n";
$progressBar = $this->_getProgressBar(0, ($numClients * $numOps) / 1000);
// Create op lists for each client
for($i = 0, $k = 0; $i < $numClients; $i++)
{
$ops = array();
for($j = 0; $j < $numOps; $j++)
{
if($k++ % 1000 === 0) {
$progressBar->update($k / 1000);
}
// Clean
if(mt_rand(0, $cleanFactor) == 0) {
$index = mt_rand(0,count($this->_tags)-1) ;
$tag = $this->_tags[$index];
$ops[] = array('clean', $tag);
}
// Write
else if(mt_rand(0, $writeFactor) == 0) {
$index = mt_rand(0,count($writes)-1);
$key = $writes[$index];
$ops[] = array('write', $key, $lengths[$key], $tags[$key]);
}
// Read
else {
$index = mt_rand(0,count($reads)-1);
$key = $reads[$index];
$ops[] = array('read', $key);
}
}
file_put_contents("$testDir/ops-client_$i.json", json_encode($ops));
}
$progressBar->finish();
$quiet = $numClients == 1 ? '':'--quiet';
$script = <<<BASH
#!/bin/bash
QUIET='--quiet'; if [ -t 1 ]; then QUIET=''; fi
php shell/cache-benchmark.php clean
php shell/cache-benchmark.php load --name '$name' \$QUIET
#php shell/cache-benchmark.php tags
results=var/cachebench/$name/results.txt
rm -f \$results
clients=0
function runClient() {
clients=$((clients+1))
php shell/cache-benchmark.php ops --name '$name' --client \$1 $quiet \$QUIET >> \$results &
}
echo "Benchmarking $numClients concurrent clients, each with $numOps operations..."
start=$(date '+%s')
BASH;
$script .= "\n";
for($i = 0; $i < $numClients; $i++) {
$script .="runClient $i\n";
}
$script .= <<<BASH
wait
finish=$(date '+%s')
elapsed=$((finish - start))
echo "\$clients concurrent clients completed in \$elapsed seconds"
echo ""
echo " | reads| writes| cleans"
echo "------------------------------------"
awk '
BEGIN { FS=OFS="|" }
{ print; for (i=2; i<=NF; ++i) sum[i] += \$i; j=NF }
END {
printf "------------------------------------\\n";
printf "ops/sec ";
for (i=2; i <= j; ++i) printf "%s%8.2f", OFS, sum[i];
}
' \$results
echo ""
BASH;
file_put_contents("$testDir/run.sh", $script);
echo "Completed generation of test data for test '$name'.\n";
echo "Run your test like so:\n\n";
echo " \$ bash var/cachebench/$name/run.sh\n";
}
/**
* Load the specified dataset
*/
protected function _loadDataset()
{
$quiet = $this->getArg('q') || $this->getArg('quiet');
$name = $this->getArg('name') ?: 'default';
$testDir = $this->_getTestDir();
$dataFile = "$testDir/data.txt";
if( ! file_exists($dataFile)) {
throw new RuntimeException("The '$name' test data does not exist. Please run the 'init' command.");
}
if( ! ($fp = fopen($dataFile,'r'))) {
throw new RuntimeException("Could not open $dataFile");
}
echo "Loading $name test data...\n";
$numRecords = rtrim(fgets($fp),"\r\n");
if(!$quiet) $progressBar = $this->_getProgressBar(0, $numRecords / 100);
$i = 0;
$start = microtime(true);
$size = 0;
$_elapsed = 0.;
while($line = fgets($fp)) {
$cache = json_decode($line, true);
if(!$quiet && $i % 100 == 0) {
$progressBar->update($i / 100);
}
$i++;
$size += strlen($cache['data']);
$_start = microtime(true);
Mage::app()->saveCache($cache['data'], $cache['key'], $cache['tags'], $cache['expires']);
$_elapsed += microtime(true) - $_start;
}
fclose($fp);
$elapsed = microtime(true)-$start;
if(!$quiet) $progressBar->finish();
printf("Loaded %d cache records in %.2f seconds (%.4f seconds cache time). Data size is %.1fK\n", $i, $elapsed, $_elapsed, $size / 1024);
}
/**
* Run the tags benchmark on the existing dataset
*/
protected function _runTagBenchmark()
{
$verbose = $this->getArg('v') || $this->getArg('verbose');
echo "Analyzing current cache contents...\n";
$start = microtime(true);
$nTags = $this->_readTags();
if (1 > $nTags)
{
throw new OutOfRangeException('No cache tags found in cache');
}
$nEntries = $this->_countCacheRecords();
if (1 > $nEntries)
{
throw new OutOfRangeException('No cache records found in cache');
}
$time = microtime(true) - $start;
printf("Counted %d cache IDs and %d cache tags in %.4f seconds\n", $nEntries, $nTags, $time);
printf("Benchmarking getIdsMatchingTags...\n");
$times = $this->_benchmarkByTag($verbose);
$this->_echoAverage($times);
}
/**
* Run the ops benchmark from the specified dataset
*/
protected function _runOpsBenchmark()
{
$quiet = $this->getArg('q') || $this->getArg('quiet');
$name = $this->getArg('name') ?: 'default';
$testDir = $this->_getTestDir();
$client = $this->getArg('client') ?: 0;
$dataFile = "$testDir/ops-client_$client.json";
if( ! file_exists($dataFile)) {
throw new RuntimeException("The '$name' test data does not exist. Please run the 'init' command.");
}
if( ! $quiet) echo "Loading operations...\n";
$data = json_decode(file_get_contents($dataFile), true);
if( ! $quiet) {
echo "Executing operations...\n";
$progressBar = $this->_getProgressBar(0, count($data) / 100);
}
$times = array(
'read_time' => 0,
'reads' => 0,
'write_time' => 0,
'writes' => 0,
'clean_time' => 0,
'cleans' => 0,
);
foreach($data as $i => $op)
{
switch($op[0])
{
case 'read':
$start = microtime(TRUE);
Mage::app()->loadCache($op[1]);
$elapsed = microtime(TRUE) - $start;
break;
case 'write':
$string = $this->_getRandomData($op[2]);
$start = microtime(TRUE);
Mage::app()->saveCache($string, $op[1], $op[3]);
$elapsed = microtime(TRUE) - $start;
break;
case 'clean':
$start = microtime(TRUE);
Mage::app()->cleanCache($op[1]);
$elapsed = microtime(TRUE) - $start;
break;
default:
throw new RuntimeException('Invalid op: '.$op[0]);
}
$times[$op[0].'_time'] += $elapsed;
$times[$op[0].'s'] += 1;
if( ! $quiet && ($i % 100 == 0)) {
$progressBar->update($i / 100);
}
}
if( ! $quiet) {
$progressBar->finish();
}
printf("Client %2d", $client);
foreach(array('read','write','clean') as $op) {
printf("|%8.2f", $times[$op.'s'] / $times[$op.'_time']);
}
echo "\n";
}
/**
* Display average values from given tag benchmark times.
*
* @param array $times
*/
protected function _echoAverage(array $times)
{
$totalTime = $totalIdCount = 0;
$numTags = count($times);
foreach ($times as $time)
{
$totalTime += $time['time'];
$totalIdCount += $time['count'];
}
printf("Average: %.5f seconds (%5.2f ids per tag)\n", $totalTime / $numTags, $totalIdCount / $numTags);
}
/**
* Display the configured cache backend(s).
*/
protected function _echoCacheConfig()
{
$backend = (string) Mage::getConfig()->getNode('global/cache/backend');
$realBackend = Mage::app()->getCache()->getBackend();
$slowBackend = (string) Mage::getConfig()->getNode('global/cache/slow_backend');
$backendClass = get_class($realBackend);
if ($backendClass !== $backend)
{
$backend = "$backend ($backendClass)";
}
if ($realBackend instanceof Zend_Cache_Backend_TwoLevels && '' === $slowBackend)
{
$slowBackend = 'Zend_Cache_Backend_File';
}
if ('' === $slowBackend)
{
printf("Cache Backend: %s\n", $backend);
}
else
{
printf("Cache Backend: %s + %s\n", $backend, $slowBackend);
}
}
protected function _analyzeCache()
{
$backend = Mage::app()->getCache()->getBackend(); /* @var $backend Zend_Cache_Backend_ExtendedInterface */
$totalSize = 0;
$totalKeyTags = 0;
$totalKeysTag = 0;
$sizeBuckets = array();
$tagsBuckets = array();
$keysBuckets = array();
$ids = $backend->getIds();
$totalIds = count($ids);
foreach($ids as $id) {
$data = $backend->load($id);
$meta = $backend->getMetadatas($id);
$size = strlen($data);
$totalSize += $size;
$sizeBucket = (int)floor($size / 2048);
$sizeBuckets[$sizeBucket]++;
$totalKeyTags += count($meta['tags']);
$tagsBucket = (int)floor(count($meta['tags']) / 1);
$tagsBuckets[$tagsBucket]++;
}
$ids = NULL;
$avgSize = round($totalSize / $totalIds / 1024, 2);
$totalSize = round($totalSize / (1024*1024), 2);
$avgTags = $totalKeyTags / $totalIds;
$tags = $backend->getTags();
$totalTags = count($tags);
foreach($tags as $tag) {
$tagCount = count($backend->getIdsMatchingAnyTags(array($tag)));
$keysBucket = (int)floor($tagCount / 1);
$keysBuckets[$keysBucket]++;
$totalKeysTag += $tagCount;
}
$tags = NULL;
$avgKeys = round($totalKeysTag / $totalTags, 2);
echo
"Total Ids\t$totalIds
Total Size\t{$totalSize} Mb
Total Tags\t$totalTags
Average Size\t$avgSize Kb
Average Tags/Key\t$avgTags
Average Keys/Tag\t$avgKeys
";
ksort($sizeBuckets);
echo "Under Kb\tCount\n";
foreach($sizeBuckets as $size => $count) {
$size *= 2;
echo "{$size}Kb\t$count\n";
}
ksort($tagsBuckets);
echo "Tags/Key\tCount\n";
foreach($tagsBuckets as $tags => $count) {
$tags *= 1;
echo "{$tags} tags\t$count\n";
}
echo "Keys/Tag\tCount\n";
ksort($keysBuckets);
foreach($keysBuckets as $keys => $count) {
$keys *= 1;
echo "{$keys} keys\t$count\n";
}
}
protected function _compTest()
{
$numChunks = 10240;
$chunks = array();
for($i = 0; $i < $numChunks; $i++) {
$chunks[] = '016_'.sha1(mt_rand(0,$numChunks*10));
}
switch($this->getArg('lib')) {
case 'snappy':
$compress = 'snappy_compress';
$decompress = 'snappy_uncompress';
break;
case 'lzf':
$compress = 'lzf_compress';
$decompress = 'lzf_decompress';
break;
case 'gzip':
$compress = array($this,'gzcompress');
$decompress = 'gzuncompress';
break;
default:
die("Please specify a lib with --lib. Options are: snappy, lzf, gzip\n");
}
if( ! function_exists($decompress)) {
echo "The function $decompress does not exist.\n";
exit;
}
echo "Testing compression with {$this->getArg('lib')}\n";
$len = 0;
$zlen = 0;
$compressTime = 0;
$decompressTime = 0;
for($i = 0; $i < $numChunks; $i = ($i >= 1024 ? $i + 4096 : $i * 3)) {
$string = implode(',', array_slice($chunks,0,$i));
$start = microtime(true);
$zstring = call_user_func($compress, $string);
$encode = microtime(true) - $start;
$start = microtime(true);
$ungztags = call_user_func($decompress, $zstring);
$decode = microtime(true) - $start;
$len += strlen($string);
$zlen += strlen($zstring);
$compressTime += $encode;
$decompressTime += $decode;
printf("random from %d bytes to %d bytes (%2.4f%%) in %.6f seconds / %.6f seconds\n", strlen($string), strlen($zstring), ((strlen($string) - strlen($zstring)) / strlen($string)) * 100., $encode, $decode);
if ($ungztags != $string) echo "ERROR\n";
if( ! $i) $i = 1;
}
foreach(array(
'./app/code/core/Mage/Core/etc/system.xml',
'./app/code/core/Mage/Catalog/etc/system.xml',
'./app/code/core/Mage/Sales/etc/system.xml',
'./app/code/core/Mage/Core/etc/config.xml',
'./app/code/core/Mage/Catalog/etc/config.xml',
'./app/code/core/Mage/Sales/etc/config.xml',
'./app/design/frontend/base/default/template/catalog/product/view.phtml',
'./app/design/frontend/base/default/template/catalog/product/list.phtml',
'./app/design/frontend/base/default/template/page/3columns.phtml',
) as $xmlFile) {
$string = file_get_contents($xmlFile);
$start = microtime(true);
$zstring = call_user_func($compress, $string);
$encode = microtime(true) - $start;
$start = microtime(true);
$ungztags = call_user_func($decompress, $zstring);
$decode = microtime(true) - $start;
$len += strlen($string);
$zlen += strlen($zstring);
$compressTime += $encode;
$decompressTime += $decode;
printf("%s from %d bytes to %d bytes (%2.4f%%) in %.6f seconds / %.6f seconds\n", $xmlFile, strlen($string), strlen($zstring), ((strlen($string) - strlen($zstring)) / strlen($string)) * 100., $encode, $decode);
if ($ungztags != $string) echo "ERROR\n";
}
foreach(array('Mage::app()->getConfig()') as $xmlFile) {
$string = Mage::app()->getConfig()->getNode()->asXML();
$start = microtime(true);
$zstring = call_user_func($compress, $string);
$encode = microtime(true) - $start;
$start = microtime(true);
$ungztags = call_user_func($decompress, $zstring);
$decode = microtime(true) - $start;
$len += strlen($string);
$zlen += strlen($zstring);
$compressTime += $encode;
$decompressTime += $decode;
printf("%s from %d bytes to %d bytes (%2.4f%%) in %.6f seconds / %.6f seconds\n", $xmlFile, strlen($string), strlen($zstring), ((strlen($string) - strlen($zstring)) / strlen($string)) * 100., $encode, $decode);
if ($ungztags != $string) echo "ERROR\n";
}
printf("Total: from %d bytes to %d bytes (%2.4f%%) in %.6f seconds / %.6f seconds\n", $len, $zlen, (($len - $zlen) / $len) * 100., $compressTime, $decompressTime);
}
protected function gzcompress($data)
{
return gzcompress($data,1);
}
/**
* Create internal list of cache tags.
*
* @param int $nTags The number of tags to create
*/
protected function _createTagList($nTags)
{
$length = strlen('' . $nTags);
for ($i = 1; $i <= $nTags; $i++)
{
$this->_tags[] = sprintf('TAG_%0' . $length . 'd', $i);
}
}
/**
* Read in list of cache tags. Remove the cache prefix to get the tags
* specified to Mage_Core_Model_App::saveCache()
*
* @return int The number of tags
*/
protected function _readTags()
{
$this->_tags = array();
$prefix = $this->_getCachePrefix();
$tags = (array) Mage::app()->getCache()->getTags();
$prefixLen = strlen($prefix);
foreach ($tags as $tag)
{
$tag = substr($tag, $prefixLen);
// since all records saved through Magento are associated with the
// MAGE cache tag it is not representative for benchmarking.
if ('MAGE' === $tag) continue;
$this->_tags[] = $tag;
}
sort($this->_tags);
return count($this->_tags);
}
/**
* Return the configured cache prefix according to the logic in core/cache.
*
* @return string The used cache prefix
* @see Mage_Core_Model_Cache::__construct()
*/
protected function _getCachePrefix()
{
if (! $this->_cachePrefix)
{
$options = Mage::getConfig()->getNode('global/cache');
$prefix = '';
if ($options)
{
$options = $options->asArray();
if (isset($options['id_prefix']))
{
$prefix = $options['id_prefix'];
}
elseif (isset($options['prefix']))
{
$prefix = $options['prefix'];
}
}
if ('' === $prefix)
{
$prefix = substr(md5(Mage::getConfig()->getOptions()->getEtcDir()), 0, 3).'_';;
}
$this->_cachePrefix = $prefix;
}
return $this->_cachePrefix;
}
/**
* Return the current number of cache records.
*
* @return int The current number of cache records
*/
protected function _countCacheRecords()
{
$ids = (array) Mage::app()->getCache()->getIds();
return count($ids);
}
/**
* Since many operations can take quite a long time for large cache pools,
* this might help ease the waiting time with a nice console progress bar.
*
* @param $min
* @param $max
* @return Zend_ProgressBar A fresh Zend_ProgressBar instance
*/
protected function _getProgressBar($min, $max)
{
$progressBar = new Zend_ProgressBar(new Zend_ProgressBar_Adapter_Console(), $min, $max);
$progressBar->getAdapter()->setFinishAction(Zend_ProgressBar_Adapter_Console::FINISH_ACTION_CLEAR_LINE);
return $progressBar;
}
/**
* Return a random number of cache tags between the given range.
*
* @param int $min
* @param int $max
* @return array
*/
protected function _getRandomTags($min, $max)
{
$tags = array();
$num = mt_rand($min, $max);
$keys = array_rand($this->_tags, $num);
foreach ($keys as $i) {
$tags[] = $this->_tags[$i];
}
return $tags;
}
/**
* Get random data for cache
*
* @param $min
* @param $max
* @return string
*/
protected function _getRandomData($min, $max = NULL)
{
if($max === NULL) {
$length = $min;
} else {
$length = mt_rand($min, $max);
}
$string = md5(mt_rand());
while(strlen($string) < $length) {
$string = base64_encode($string);
}
return substr($string, 0, $length);
}
/**
* Get the time used for calling getIdsMatchingTags() for every cache tag in
* the property $_tags.
* If $verbose is set to true, display detailed statistics for each tag,
* otherwise display a progress bar.
*
* @param bool $verbose If true output statistics for every cache tag
* @return array Return an array of timing statistics
*/
protected function _benchmarkByTag($verbose = false)
{
$times = array();
if (! $verbose)
{
$progressBar = $this->_getProgressBar(0, count($this->_tags) / 10);
$counter = 0;
}
foreach ($this->_tags as $tag)
{
$start = microtime(true);
$ids = Mage::app()->getCache()->getIdsMatchingTags(array($tag));
$end = microtime(true);
$times[$tag] = array('time' => $end - $start, 'count' => count($ids));
if (! $verbose && $counter++ % 10 == 0) {
$progressBar->update($counter / 10);
}
}
if (! $verbose)
{
$progressBar->finish();
}
return $times;
}
/**
* Return the length of the longest tag in the $_tags property.
*
* @param bool $force If true don't use the cached value
* @return int The length of the longest tag
*/
protected function _getLongestTagLength($force = false)
{
if (0 === $this->_maxTagLength || $force)
{
$len = 0;
foreach ($this->_tags as $tag)
{
$tagLen = strlen($tag);
if ($tagLen > $len)
{
$len = $tagLen;
}
}
$this->_maxTagLength = $len;
}
return $this->_maxTagLength;
}
/**
* Return the usage help.
*
* @return string
*/
public function usageHelp()
{
return <<<USAGE
This script will either initialize a new benchmark dataset or run a benchmark.
Usage: php -f shell/cache-benchmark.php [command] [options]
Commands:
init [options] Initialize a new dataset.
load --name <string> Load an existing dataset.
clean Flush the cache backend.
tags Benchmark getIdsMatchingTags method.
ops [options] Execute a pre-generated set of operations on the existing cache.
analyze Analyze the current cache contents
comp_test Test compression library performance
'init' options:
--name <string> A unique name for this dataset (default to "default")
--keys <num> Number of cache keys (default to 10000)
--tags <num> Number of cache tags (default to 2000)
--min-tags <num> The min number of tags to use for each record (default 0)
--max-tags <num> The max number of tags to use for each record (default 15)
--min-rec-size <num> The smallest size for a record (default 1)
--max-rec-size <num> The largest size for a record (default 1024)
--clients <num> The number of clients for multi-threaded testing (defaults to 4)
--ops <num> The number of operations to perform per client (defaults to 100000)
--seed <num> The random number generator seed (default random)
'ops' options:
--name <string> The dataset to use (from the --name option from init command)
--client <num> Client number (0-n where n is --clients option from init command)
-q|--quiet Be less verbose.
'comp_test' options:
--lib <string> One of snappy, lzf, gzip
USAGE;
}
}
$init = new benchmark();
$init->run();