A fluent cache library for PHP built on the shoulders of Doctrine\Cache.
Package is available on Packagist, you can install it using Composer.
composer require phpfluent/cache
use PHPFluent\Cache\Cache;
/**
* @var Doctrine\Common\Cache\Cache $doctrine
*/
$doctrine;
$cache = new Cache($doctrine);
$cache['foo'] = 'bar'; //Caching the information
echo isset($cache['foo']);
echo $cache['foo'];
unset($cache['foo']);//Deleting the cache