PHP code example of sura / cache

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

$cache->save($key, $value, [
	Cache::EXPIRE => '20 minutes',
]);

$value = $cache->load($key, function (&$dependencies) {
	$dependencies[Cache::EXPIRE] = '20 minutes';
	return ...;
]);

// it also accepts the number of seconds or the UNIX timestamp
$dependencies[Cache::EXPIRE] = '20 minutes';

$dependencies[Cache::SLIDING] = true;

$dependencies[Cache::FILES] = '/path/to/data.yaml';
// nebo
$dependencies[Cache::FILES] = ['/path/to/data1.yaml', '/path/to/data2.yaml'];

$dependencies[Cache::ITEMS] = ['frag1', 'frag2'];

function checkPhpVersion($ver): bool
{
	return $ver === PHP_VERSION_ID;
}

$dependencies[Cache::CALLBACKS] = [
	['checkPhpVersion', PHP_VERSION_ID] // expire when checkPhpVersion(...) === false
];

$dependencies[Cache::EXPIRE] = '20 minutes';
$dependencies[Cache::FILES] = '/path/to/data.yaml';

$dependencies[Cache::TAGS] = ["article/$articleId", "comments/$articleId"];

$cache->clean([
	Cache::TAGS => ["article/$articleId"],
]);

$cache->clean([
	Cache::TAGS => ["comments/$articleId"],
]);

$dependencies[Cache::PRIORITY] = 50;

$cache->clean([
	Cache::PRIORITY => 100,
]);

$cache->clean([
	Cache::ALL => true,
]);

$values = $cache->bulkLoad($keys);

$values = $cache->bulkLoad($keys, function ($key, &$dependencies) {
	$computedValue = ...; // heavy computations
	return $computedValue;
});

if ($capture = $cache->start($key)) {

	echo ... // printing some data

	$capture->end(); // save the output to the cache
}

// the storage will be the directory '/path/to/temp' on the disk
$storage = new Sura\Cache\Storages\FileStorage('/path/to/temp');

$storage = new Sura\Cache\Storages\MemcachedStorage('10.0.0.158');

$storage = new Sura\Cache\Storages\MemoryStorage;

$storage = new Sura\Cache\Storages\SQLiteStorage('/path/to/cache.sdb');

$storage = new Sura\Cache\Storages\DevNullStorage;