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/cacheusePHPFluent\Cache\Cache;
/** * @var Doctrine\Common\Cache\Cache $doctrine */$doctrine;
$cache = newCache($doctrine);
$cache['foo'] = 'bar'; //Caching the informationechoisset($cache['foo']);
echo$cache['foo'];
unset($cache['foo']);//Deleting the cache