1. Go to this page and download the library: Download sura/cache library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
sura / cache example snippets
use Sura\Cache\Cache;
$storage // instance of Sura\Cache\IStorage
$cache = new Cache($storage, 'Full Html Pages');
$value = $cache->load($key, function () use ($key) {
$computedValue = ...; // heavy computations
return $computedValue;
});
$cache->remove($key);
$result = $cache->call('gethostbyaddr', $ip);
function factorial($num)
{
return ...;
}
$memoizedFactorial = $cache->wrap('factorial');
$result = $memoizedFactorial(5); // counts it
$result = $memoizedFactorial(5); // returns it from cache