App\Boilerplate\CacheManager
This class is an utility giving the developer an actionable API to interact with a performent caching mechanism like Redis.
The basic use will be to store key/value pairs with a Time To Live (TTL) expiration time.
use App\Boilerplate\CacheManager;
$memoization = CacheManager::getInstance();
$value = $memoization->get('FOO', function (\Symfony\Contracts\Cache\ItemInterface $item) {
$item->expiresAfter(10); //seconds
return 'BAR';
});
$memoization = CacheManager::getInstance();
$foo = $memoization->getItem('FOO');
if (!$foo->isHit()) {
// foo item does not exist in the cache
$foo->set('BAR')->expiresAfter(10);
$memoization->save($foo);
}
// retrieve the value stored by the item
$value = $foo->get();
TODO: Improving this section of documentation with more detailled and explained use cases.
- Back to README