缓存 / 命名空间缓存
一个使您的缓存支持命名空间的装饰器
1.2.0
2022-01-15 15:47 UTC
Requires
- php: >=7.4
- cache/hierarchical-cache: ^1.0
- psr/cache: ^1.0 || ^2.0
Requires (Dev)
- cache/memcached-adapter: ^1.0
- phpunit/phpunit: ^7.5.20 || ^9.5.10
README
这是一个PSR-6分层缓存的装饰器。它将允许您使用命名空间。
它是PHP Cache组织的一部分。有关标记和层次结构支持等功能的说明,请参阅www.php-cache.com上的共享文档。
安装
composer require cache/namespaced-cache
使用
$hierarchyPool = new RedisCachePool($client); $namespacedPool = new NamespacedCachePool($hierarchyPool, 'acme');