PHPDaemon\Clients\Memcache\Pool::get PHP Method

get() public method

Gets the key
public get ( string $key, callable $onResponse ) : void
$key string Key
$onResponse callable Callback called when response received
return void
    public function get($key, $onResponse)
    {
        $this->requestByKey($key, 'get ' . $this->config->prefix->value . $key . "\r\n", $onResponse);
    }