Lavender\Cloud\Sina\Cache\MemcacheStore::get PHP 메소드

get() 공개 메소드

Retrieve an item from the cache by key.
public get ( string $key ) : mixed
$key string
리턴 mixed
    public function get($key)
    {
        $value = $this->memcache->get($this->prefix . $key);
        return $value;
    }