Cache
Installation
composer require sonsofphp/cachePSR-16 - Simple Cache
composer require psr/simple-cacheUsage
<?php
use SonsOfPHP\Component\Cache\Adapter\ApcuAdapter;
$pool = new ApcuAdapter();PSR-16 Simple Cache Wrapper
<?php
use SonsOfPHP\Component\Cache\Adapter\ApcuAdapter;
use SonsOfPHP\Component\Cache\SimpleCache;
$pool = new ApcuAdapter();
$cache = new SimpleCache($pool);Setting up a multi layer cache
Last updated