reactphp-x/redis-cache

Installs: 9

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/reactphp-x/redis-cache

v1.0.0 2024-08-10 00:49 UTC

This package is auto-updated.

Last update: 2025-10-10 04:37:19 UTC


README

install

composer require reactphp-x/redis-cache -vvv

Usage

use Clue\React\Redis\RedisClient;
use ReactphpX\RedisCache\RedisCache;
$redis = new RedisClient('redis://:h%40llo@localhost');
// $redis = new RedisClient('redis://ignored:h%40llo@localhost');
// $redis = new RedisClient('redis://localhost?password=h%40llo');
// $redis = new RedisClient('redis://localhost/2');
// $redis = new RedisClient('redis://localhost?db=2');

$redisCache = new RedisCache($redis);

see CacheInterface

License

MIT