cache / simple-cache-bridge
PSR-6 到 PSR-16 的桥梁。这将使任何 PSR-6 缓存与 SimpleCache 兼容。
1.2.0
2022-01-15 15:47 UTC
Requires
- php: >=7.4
- psr/cache: ^1.0 || ^2.0
- psr/simple-cache: ^1.0
Requires (Dev)
- cache/integration-tests: ^0.17
- mockery/mockery: ^1.0
- phpunit/phpunit: ^7.5.20 || ^9.5.10
- symfony/cache: ^3.2
Provides
README
这是一个将 PSR-6 缓存实现转换为 PSR-16(SimpleCache)的桥梁。它是 PHP Cache 组织的一部分。有关标签和层次结构支持等功能的信息,请阅读在 www.php-cache.com 的共享文档。
安装
composer require cache/simple-cache-bridge
使用
您需要将现有的 PSR-6 池作为构造函数参数传递给桥梁。
$psr6pool = new ArrayCachePool(); $simpleCache = new SimpleCacheBridge($psr6pool);