You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a implementation for the PSR-6 for PhpRedis cache. This implementation supports tags.
4
+
This is a PSR-6 cache implementation for Redis. It is a part of the PHP Cache organisation. To read about
5
+
features like tagging and hierarchy support please read the shared documentation at [www.php-cache.com](http://www.php-cache.com).
5
6
6
-
This implementation is using [PhpRedis](https://github.com/phpredis/phpredis). If you want an adapter with
7
-
[Predis](https://github.com/nrk/predis) you should look at our [Predis adapter](https://github.com/php-cache/predis-adapter).
7
+
This implementation is using [PhpRedis](https://github.com/phpredis/phpredis). If you want an adapter with
8
+
[Predis](https://github.com/nrk/predis) you should look at our [Predis adapter](https://github.com/php-cache/predis-adapter).
9
+
10
+
### Install
11
+
12
+
```bash
13
+
composer require cache/redis-adapter
14
+
```
15
+
16
+
### Configure
17
+
18
+
To create an instance of `RedisCachePool` you need to configure a `\Redis` client.
0 commit comments