diff --git a/DataStorage/Cache/Connection/RedisCache.php b/DataStorage/Cache/Connection/RedisCache.php index 1f9a20586..007553508 100644 --- a/DataStorage/Cache/Connection/RedisCache.php +++ b/DataStorage/Cache/Connection/RedisCache.php @@ -107,7 +107,8 @@ class RedisCache extends ConnectionAbstract if ($expire > 0) { $this->con->setEx($key, $expire, $this->build($value)); - var_dump($this->con->ttl($key)); + + return; } $this->con->set($key, $this->build($value));