X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCore%2FCache%2FRedisCacheDriver.php;h=ea4eb4390a629c9c2a9b42fef9baeddcc659df2b;hb=dc0978141c444f452071f076c2309fcf67546b57;hp=f9d00fde21fb4c3366ec8878f5e3f8dcdf4a69df;hpb=743e7d3ecb4bc06999284bffd977265abc23731f;p=friendica.git diff --git a/src/Core/Cache/RedisCacheDriver.php b/src/Core/Cache/RedisCacheDriver.php index f9d00fde21..ea4eb4390a 100644 --- a/src/Core/Cache/RedisCacheDriver.php +++ b/src/Core/Cache/RedisCacheDriver.php @@ -2,9 +2,8 @@ namespace Friendica\Core\Cache; -use Friendica\Core\Cache; - use Exception; +use Friendica\Core\Cache; use Redis; /** @@ -21,11 +20,13 @@ class RedisCacheDriver extends AbstractCacheDriver implements IMemoryCacheDriver private $redis; /** - * @param string $redis_host - * @param int $redis_port + * @param string $redis_host + * @param int $redis_port + * @param int $redis_db (Default = 0, maximum is 15) + * @param string? $redis_pw * @throws Exception */ - public function __construct($redis_host, $redis_port) + public function __construct($redis_host, $redis_port, $redis_db = 0, $redis_pw = null) { if (!class_exists('Redis', false)) { throw new Exception('Redis class isn\'t available'); @@ -36,14 +37,30 @@ class RedisCacheDriver extends AbstractCacheDriver implements IMemoryCacheDriver if (!$this->redis->connect($redis_host, $redis_port)) { throw new Exception('Expected Redis server at ' . $redis_host . ':' . $redis_port . ' isn\'t available'); } + + if (isset($redis_pw) && !$this->redis->auth($redis_pw)) { + throw new Exception('Cannot authenticate redis server at ' . $redis_host . ':' . $redis_port); + } + + if ($redis_db !== 0 && !$this->redis->select($redis_db)) { + throw new Exception('Cannot switch to redis db ' . $redis_db . ' at ' . $redis_host . ':' . $redis_port); + } } /** * (@inheritdoc) */ - public function getAllKeys() + public function getAllKeys($prefix = null) { - return null; + if (empty($prefix)) { + $search = '*'; + } else { + $search = $prefix . '*'; + } + + $list = $this->redis->keys($this->getCacheKey($search)); + + return $this->getOriginalKeys($list); } /** @@ -144,7 +161,7 @@ class RedisCacheDriver extends AbstractCacheDriver implements IMemoryCacheDriver ->exec(); } else { $result = $this->redis->multi() - ->set($cachekey, $newValue) + ->set($cachekey, $newCached) ->exec(); } return $result !== false;