php memcache返回END时不应该

时间:2016-10-04 20:17:16

标签: php memcached

我目前正在学习内存缓存。做一些简单的get / set查询,发现一个奇怪的行为。

这就是我如何设置和获取查询。

$memClient = new MemcacheClient('localhost', 11211);
$memClient->set('get1', 'value of get1');
$memClient->set('get2', 'value of get2');
$memClient->get('get1');
$memClient->get('get2');

这就是我简单的MemcacheClient

Class MemcacheClient
{
    private $socket;

    private $reply;

    private $replies = [
        'OK' => true,
        'EXISTS' => false,
        'DELETED' => true,
        'STORED' => true,
        'NOT_STORED' => false,
        'NOT_FOUND' => false,
        'ERROR' => null,
        'CLIENT_ERROR' => null, 
        'SERVER_ERROR' => null
    ];

    public function __construct($host, $port)
    {
        $this->socket = stream_socket_client("$host:$port", $errno, $errstr);

        if(!$this->socket) {
            throw new \Exception("$errst ($errno)");
        }
    }

    public function get($key)
    {
        $reply = $this->query("get $key");

        return $reply;
    }

    public function set($key, $value, $exptime = 0, $flags = 0)
    {
        return $this->query(array("set $key $flags $exptime ".strlen($value), $value));
    }

    private function query($query)
    {
        $query = is_array($query) ? implode("\r\n", $query) : $query;
        fwrite($this->socket, $query."\r\n");

        return $this->parseLine();
    }

    private function parseLine()
    {
        $line = fgets($this->socket);
        print $line.'<br>';
        $this->reply = substr($line, 0, strlen($line) - 2);

        $words = explode(' ', $this->reply);

        $result = isset($this->replies[$words[0]]) ? $this->replies[$words[0]] : $words;

        if (is_null($result)) {
            throw new \Exception($this->reply);
        }

        if ($result[0] == 'VALUE') {
            $value = fread($this->socket, $result[3] + 2);

            return $value;
        }

        return $result;
    }
}

首先获取&#39; get1&#39;的查询响应key是VALUE get1 0 13 第二次获取&#39; get2&#39;的查询响应键是END

如果我这样做两次,第三个响应将返回该值,第四个响应将再次返回END。

任何想法为什么?

由于

1 个答案:

答案 0 :(得分:0)

看起来根据memcached protocol,检索请求命令在收到END之前尚未完成,但我没有看到您的代码对此进行说明。

我认为对于您的代码,您需要在fgets()get命令上继续调用gets,直到收到END,然后解析结果。