ManaPHP\Store\Adapter\Redis::set PHP Method

set() public method

Caches content
public set ( string $id, string $value ) : void
$id string
$value string
return void
    public function set($id, $value)
    {
        $this->redis->hSet($this->_key, $id, $value);
    }