Lavender\Cloud\Sina\Cache\MemcacheStore::get PHP Méthode

get() public méthode

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