Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
212
/
root
/
opt
/
php-8.3.16-202502031720
/
share
/
test
/
Cache_Lite
/
tests
/
//proc/212/root/opt/php-8.3.16-202502031720/share/test/Cache_Lite/tests/bench2.php
<?php // Bench script of Cache_Lite_Output // $Id$ require_once __DIR__ . '/../Cache/Lite/Output.php'; $options = array( 'caching' => true, 'cacheDir' => '/tmp/', 'lifeTime' => 10 ); $cache = new Cache_Lite_Output($options); if (!($cache->start('123'))) { // Cache missed... for($i=0;$i<1000;$i++) { // Making of the page... echo('0123456789'); } $cache->end(); } ?>