redis-adapter

[READ-ONLY] Redis PSR-6 Cache pool

Github星跟踪图

Redis PSR-6 Cache pool

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

This is a PSR-6 cache implementation using Redis. 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.

This implementation is using PhpRedis. If you want an adapter with
Predis you should look at our Predis adapter.

Install

composer require cache/redis-adapter

Use

To create an instance of RedisCachePool you need to configure a \Redis, \RedisArray or \RedisCluster client.

\Redis

$client = new \Redis();
$client->connect('127.0.0.1', 6379);
$pool = new RedisCachePool($client);

\RedisArray

$client = new \RedisArray(['127.0.0.1:6379', '127.0.0.2:6379']);
$pool = new RedisCachePool($client);

\RedisCluster

$client = new \RedisCluster(null, ['127.0.0.1:7000', '127.0.0.2:7001', '127.0.0.2:7002',]);
$pool = new RedisCachePool($client);

See PhpRedis for more connection options

Contribute

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

主要指标

概览
名称与所有者php-cache/redis-adapter
主编程语言PHP
编程语言PHP (语言数: 1)
平台
许可证MIT License
所有者活动
创建于2016-01-06 20:42:10
推送于2023-03-22 17:41:42
最后一次提交2022-01-15 16:47:19
发布数10
最新版本名称1.2.0 (发布于 )
第一版名称0.1.0 (发布于 )
用户参与
星数52
关注者数2
派生数14
提交数69
已启用问题?
问题数0
打开的问题数0
拉请求数7
打开的拉请求数0
关闭的拉请求数5
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?