This package provides PSR-6 and PSR-16 cache implementations that never retain values. Reads always miss, while writes and deletions succeed.
Use this adapter when an application requires a cache interface but caching must remain disabled.
composer require cache/void-adapter:^3.0use Cache\Adapter\Void\VoidCachePool;
$pool = new VoidCachePool();Version 3 requires cache/adapter-common 3. The pool retains no cache data, so an upgrade does not require a cache clear.
Send pull requests to the main repository. Report issues on the GitHub issue tracker.