cache / predis-adapter
这是一个使用 Redis (Predis) 的 PSR-6 缓存实现,支持标签功能
1.2.0
2022-01-15 15:47 UTC
Requires
- php: >=7.4
- cache/adapter-common: ^1.0
- cache/hierarchical-cache: ^1.0
- predis/predis: ^1.1
- psr/cache: ^1.0 || ^2.0
- psr/simple-cache: ^1.0
Requires (Dev)
- cache/integration-tests: ^0.17
- phpunit/phpunit: ^7.5.20 || ^9.5.10
Provides
README
这是一个使用 Predis 的 PSR-6 缓存实现。它是 PHP Cache 组织的一部分。有关标签和层次结构支持等功能的信息,请阅读 www.php-cache.com 上的共享文档。
本实现使用 Predis。如果您需要一个使用 PhpRedis 的适配器,请查看我们的 Redis 适配器。
安装
composer require cache/predis-adapter
使用
要创建 PredisCachePool
的实例,您需要配置一个 \Predis\Client
对象。
$client = new \Predis\Client('tcp:/127.0.0.1:6379'); $pool = new PredisCachePool($client);