сейчас попробовал
По дефолту Cache time = 600 сек.
Code: Select all
<?php
if (false !== ($cache_result = Cache::get('cache_test'))) {
$cache_result = rand (1111,5555);
Cache::set('cache_test', $cache_result, 3000);
}
echo $cache_result;
?>Code: Select all
<?php
if (false !== ($cache_result = Cache::get('cache_test'))) {
$cache_result = rand (1111,5555);
Cache::set('cache_test', $cache_result, 3000);
}
echo $cache_result;
?>