Current File : //opt/RZphp70/includes/test/Cache_Lite/tests/Cache_Lite_lifetime.phpt
--TEST--
Cache_Lite::Cache_Lite (lifetime)
--FILE--
<?php

require_once('callcache.inc');
require_once('tmpdir.inc');
require_once('cache_lite_base.inc');

$options = array(
    'cacheDir' => tmpDir() . '/',
    'lifeTime' => 2
);

$Cache_Lite = new Cache_Lite($options);
callCache('31415926');
echo("\n");
callCache('31415926');
echo("\n");
sleep(4);
callCache('31415926');
echo("\n");
sleep(4);
$Cache_Lite->extendLife();
callCache('31415926');
echo("\n");
$Cache_Lite->remove('31415926');

?>
--GET--
--POST--
--EXPECT--
Cache Missed !
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
Cache Hit !
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
Cache Missed !
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
Cache Hit !
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789