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?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?