Adapters
ApcuAdapter
<?php
use SonsOfPHP\Componenet\Cache\Adapter\ApcuAdapter;
$cache = new ApcuAdapter();
// You can set a default TTL in seconds and Marshaller as well.
$cache = new ApcuAdapter(60, new CustomMarshaller());ArrayAdapter
<?php
use SonsOfPHP\Componenet\Cache\Adapter\ArrayAdapter;
$cache = new ArrayAdapter();ChainAdapter
FilesystemAdapter
NullAdapter
Last updated