Need to change
$this->get($this->key($namespace, $key));
To
$this->get($namespace, $key);
Also I found the bug after the fix $key is sending as an array but the key() method is expecting string as the key. Need change redis.php line 82 to
$this->set($namespace, $key, $value, $expire);
Need to change $this->get($this->key($namespace, $key));
To $this->get($namespace, $key);
Also I found the bug after the fix $key is sending as an array but the key() method is expecting string as the key. Need change redis.php line 82 to
$this->set($namespace, $key, $value, $expire);