Last updated
Last updated
All adapters implement the PSR-6 \Psr\Cache\CacheItemPoolInterface
and can be used as standalone cache pools.
Requires the APCu extension is loaded and enabled.
Stores cache items in an internal PHP array.
The Chain Adapter will take one or more adapters. It will WRITE to all adapters and will READ from each adapter until it finds a hit and return that cache item.
Stores cache files on disk
Mainly used for testing, however you could have some checks in place and if those checks fail, you could fallback to this adapter.