redis-adapter

[READ-ONLY] Redis PSR-6 Cache pool

Github stars Tracking Chart

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.

Main metrics

Overview
Name With Ownerphp-cache/redis-adapter
Primary LanguagePHP
Program languagePHP (Language Count: 1)
Platform
License:MIT License
所有者活动
Created At2016-01-06 20:42:10
Pushed At2023-03-22 17:41:42
Last Commit At2022-01-15 16:47:19
Release Count10
Last Release Name1.2.0 (Posted on )
First Release Name0.1.0 (Posted on )
用户参与
Stargazers Count52
Watchers Count2
Fork Count14
Commits Count69
Has Issues Enabled
Issues Count0
Issue Open Count0
Pull Requests Count7
Pull Requests Open Count0
Pull Requests Close Count5
项目设置
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private