home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 June / ENTER.ISO / files / xampp-win32-1.4.5-installer.exe / xampp / bench2.php < prev    next >
Encoding:
PHP Script  |  2004-03-24  |  442 b   |  24 lines

  1. <?php
  2.  
  3. // Bench script of Cache_Lite_Output
  4. // $Id: bench2.php,v 1.4 2002/09/28 18:05:29 fab Exp $
  5.  
  6. require_once('Cache/Lite/Output.php');
  7.  
  8. $options = array(
  9.     'caching' => true,
  10.     'cacheDir' => '/tmp/',
  11.     'lifeTime' => 10
  12. );
  13.  
  14. $cache = new Cache_Lite_Output($options);
  15.  
  16. if (!($cache->start('123'))) {
  17.     // Cache missed...
  18.     for($i=0;$i<1000;$i++) { // Making of the page...
  19.         echo('0123456789');
  20.     }
  21.     $cache->end();
  22. }
  23.  
  24. ?>