X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCore%2FCache%2FRedisCacheDriver.php;h=ea4eb4390a629c9c2a9b42fef9baeddcc659df2b;hb=dc0978141c444f452071f076c2309fcf67546b57;hp=223c2b8a943493b146ef2983af7bace20dd0dbcf;hpb=5f1b5f82ad6d9b816db5c99ff708f706dc39f0bb;p=friendica.git diff --git a/src/Core/Cache/RedisCacheDriver.php b/src/Core/Cache/RedisCacheDriver.php index 223c2b8a94..ea4eb4390a 100644 --- a/src/Core/Cache/RedisCacheDriver.php +++ b/src/Core/Cache/RedisCacheDriver.php @@ -2,34 +2,70 @@ namespace Friendica\Core\Cache; +use Exception; use Friendica\Core\Cache; +use Redis; /** * Redis Cache Driver. This driver is based on Memcache driver * - * @author Hypolite Petovan + * @author Hypolite Petovan * @author Roland Haeder */ class RedisCacheDriver extends AbstractCacheDriver implements IMemoryCacheDriver { /** - * @var \Redis + * @var Redis */ private $redis; - public function __construct($redis_host, $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, $redis_db = 0, $redis_pw = null) { if (!class_exists('Redis', false)) { - throw new \Exception('Redis class isn\'t available'); + throw new Exception('Redis class isn\'t available'); } - $this->redis = new \Redis(); + $this->redis = new Redis(); if (!$this->redis->connect($redis_host, $redis_port)) { - throw new \Exception('Expected Redis server at ' . $redis_host . ':' . $redis_port . ' isn\'t available'); + 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($prefix = null) + { + if (empty($prefix)) { + $search = '*'; + } else { + $search = $prefix . '*'; + } + + $list = $this->redis->keys($this->getCacheKey($search)); + + return $this->getOriginalKeys($list); + } + + /** + * (@inheritdoc) + */ public function get($key) { $return = null; @@ -40,7 +76,7 @@ class RedisCacheDriver extends AbstractCacheDriver implements IMemoryCacheDriver return null; } - $value = json_decode($cached); + $value = unserialize($cached); // Only return a value if the serialized value is valid. // We also check if the db entry is a serialized @@ -52,11 +88,14 @@ class RedisCacheDriver extends AbstractCacheDriver implements IMemoryCacheDriver return $return; } + /** + * (@inheritdoc) + */ public function set($key, $value, $ttl = Cache::FIVE_MINUTES) { $cachekey = $this->getCacheKey($key); - $cached = json_encode($value); + $cached = serialize($value); if ($ttl > 0) { return $this->redis->setex( @@ -72,12 +111,18 @@ class RedisCacheDriver extends AbstractCacheDriver implements IMemoryCacheDriver } } + /** + * (@inheritdoc) + */ public function delete($key) { $cachekey = $this->getCacheKey($key); return ($this->redis->delete($cachekey) > 0); } + /** + * (@inheritdoc) + */ public function clear($outdated = true) { if ($outdated) { @@ -93,7 +138,7 @@ class RedisCacheDriver extends AbstractCacheDriver implements IMemoryCacheDriver public function add($key, $value, $ttl = Cache::FIVE_MINUTES) { $cachekey = $this->getCacheKey($key); - $cached = json_encode($value); + $cached = serialize($value); return $this->redis->setnx($cachekey, $cached); } @@ -105,7 +150,7 @@ class RedisCacheDriver extends AbstractCacheDriver implements IMemoryCacheDriver { $cachekey = $this->getCacheKey($key); - $newCached = json_encode($newValue); + $newCached = serialize($newValue); $this->redis->watch($cachekey); // If the old value isn't what we expected, somebody else changed the key meanwhile @@ -116,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; @@ -124,6 +169,7 @@ class RedisCacheDriver extends AbstractCacheDriver implements IMemoryCacheDriver $this->redis->unwatch(); return false; } + /** * (@inheritdoc) */