ManaPHP\Counter\Adapter\Redis::get PHP 메소드

get() 공개 메소드

public get ( string $type, string $id ) : integer
$type string
$id string
리턴 integer
    public function get($type, $id)
    {
        return (int) $this->redis->hGet($this->_prefix . $type, $id);
    }