Skip to content

[READ-ONLY] A library to make a PSR-6 cache prefixed with a namespace.

License

Notifications You must be signed in to change notification settings

php-cache/namespaced-cache

Repository files navigation

Namespaced PSR-6 cache pool

Gitter Latest Stable Version codecov.io Total Downloads Monthly Downloads Software License

This is a decorator for a PSR-6 hierarchical cache. It will allow you to use namespaces.

It is a part of the PHP Cache organisation. To read about features like tagging and hierarchy support please read the shared documentation at www.php-cache.com.

Install

composer require cache/namespaced-cache

Use

$hierarchyPool = new RedisCachePool($client);
$namespacedPool = new NamespacedCachePool($hierarchyPool, 'acme');

Contribute

Contributions are very welcome! Send a pull request to the main repository or report any issues you find on the issue tracker.