]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Cache/RedisCacheDriver.php
Added Unittests for cache
[friendica.git] / src / Core / Cache / RedisCacheDriver.php
index 735418b2d220d8414d5fa48a341c2f047fd3bf8e..223c2b8a943493b146ef2983af7bace20dd0dbcf 100644 (file)
@@ -2,7 +2,6 @@
 
 namespace Friendica\Core\Cache;
 
-use Friendica\BaseObject;
 use Friendica\Core\Cache;
 
 /**
@@ -11,7 +10,7 @@ use Friendica\Core\Cache;
  * @author Hypolite Petovan <mrpetovan@gmail.com>
  * @author Roland Haeder <roland@mxchange.org>
  */
-class RedisCacheDriver extends BaseObject implements IMemoryCacheDriver
+class RedisCacheDriver extends AbstractCacheDriver implements IMemoryCacheDriver
 {
        /**
         * @var \Redis
@@ -34,16 +33,14 @@ class RedisCacheDriver extends BaseObject implements IMemoryCacheDriver
        public function get($key)
        {
                $return = null;
+               $cachekey = $this->getCacheKey($key);
 
-               // We fetch with the hostname as key to avoid problems with other applications
-               $cached = $this->redis->get(self::getApp()->get_hostname() . ':' . $key);
-
-               // @see http://php.net/manual/en/redis.get.php#84275
-               if (is_bool($cached) || is_double($cached) || is_long($cached)) {
-                       return $return;
+               $cached = $this->redis->get($cachekey);
+               if ($cached === false && !$this->redis->exists($cachekey)) {
+                       return null;
                }
 
-               $value = @unserialize($cached);
+               $value = json_decode($cached);
 
                // Only return a value if the serialized value is valid.
                // We also check if the db entry is a serialized
@@ -57,42 +54,48 @@ class RedisCacheDriver extends BaseObject implements IMemoryCacheDriver
 
        public function set($key, $value, $ttl = Cache::FIVE_MINUTES)
        {
-               // We store with the hostname as key to avoid problems with other applications
+               $cachekey = $this->getCacheKey($key);
+
+               $cached = json_encode($value);
+
                if ($ttl > 0) {
                        return $this->redis->setex(
-                               self::getApp()->get_hostname() . ":" . $key,
-                               time() + $ttl,
-                               serialize($value)
+                               $cachekey,
+                               $ttl,
+                               $cached
                        );
                } else {
                        return $this->redis->set(
-                               self::getApp()->get_hostname() . ":" . $key,
-                               serialize($value)
+                               $cachekey,
+                               $cached
                        );
                }
        }
 
        public function delete($key)
        {
-               return $this->redis->delete($key);
+               $cachekey = $this->getCacheKey($key);
+               return ($this->redis->delete($cachekey) > 0);
        }
 
-       public function clear()
+       public function clear($outdated = true)
        {
-               return true;
+               if ($outdated) {
+                       return true;
+               } else {
+                       return $this->redis->flushAll();
+               }
        }
 
-
        /**
         * (@inheritdoc)
         */
        public function add($key, $value, $ttl = Cache::FIVE_MINUTES)
        {
-               if (!is_int($value)) {
-                       $value = serialize($value);
-               }
+               $cachekey = $this->getCacheKey($key);
+               $cached = json_encode($value);
 
-               return $this->redis->setnx(self::getApp()->get_hostname() . ":" . $key, $value);
+               return $this->redis->setnx($cachekey, $cached);
        }
 
        /**
@@ -100,20 +103,20 @@ class RedisCacheDriver extends BaseObject implements IMemoryCacheDriver
         */
        public function compareSet($key, $oldValue, $newValue, $ttl = Cache::FIVE_MINUTES)
        {
-               if (!is_int($newValue)) {
-                       $newValue = serialize($newValue);
-               }
+               $cachekey = $this->getCacheKey($key);
 
-               $this->redis->watch(self::getApp()->get_hostname() . ":" . $key);
+               $newCached = json_encode($newValue);
+
+               $this->redis->watch($cachekey);
                // If the old value isn't what we expected, somebody else changed the key meanwhile
                if ($this->get($key) === $oldValue) {
                        if ($ttl > 0) {
                                $result = $this->redis->multi()
-                                       ->setex(self::getApp()->get_hostname() . ":" . $ttl, $key, $newValue)
+                                       ->setex($cachekey, $ttl, $newCached)
                                        ->exec();
                        } else {
                                $result = $this->redis->multi()
-                                       ->set(self::getApp()->get_hostname() . ":" . $key, $newValue)
+                                       ->set($cachekey, $newValue)
                                        ->exec();
                        }
                        return $result !== false;
@@ -126,11 +129,13 @@ class RedisCacheDriver extends BaseObject implements IMemoryCacheDriver
         */
        public function compareDelete($key, $value)
        {
-               $this->redis->watch(self::getApp()->get_hostname() . ":" . $key);
+               $cachekey = $this->getCacheKey($key);
+
+               $this->redis->watch($cachekey);
                // If the old value isn't what we expected, somebody else changed the key meanwhile
                if ($this->get($key) === $value) {
                        $result = $this->redis->multi()
-                               ->del(self::getApp()->get_hostname() . ":" . $key)
+                               ->del($cachekey)
                                ->exec();
                        return $result !== false;
                }