24 line
if (!$this->getConnection()->getClient()->hset($this->name,$key, $value))
it don't corrent than hset return 1 if create new 0 if update exist and return false if error
correct code
if (false === $this->getConnection()->getClient()->hset($this->name,$key, $value)) {