firehed/null-psr16

Always-offline PSR-16 cache implemention, for fallback and testing

0.1.0 2021-06-02 23:42 UTC

This package is auto-updated.

Last update: 2024-03-25 20:32:59 UTC


README

This is a PSR-16 implementation that always fails.

The motivation for this to exist is for fallback handling in cascading cache drivers. Rather than the application using a cache failing entirely because it can't connect to the cache, it can fall back to a non-throwing implementation like this.

Also useful for tests where you want to ensure correct non-throwing failure handling and don't want to write a mock driver.

Installation and Usage

Install: composer require firehed/null-psr16

Usage:

$cache = new \Firehed\Cache\NullPsr16();
// Use like any other PSR-16 implementation