猿问

Memcached驱动为何在存在账户或密码时,才使用二进制连接?

问题

无论有没有账号密码,连接方式不都应该是统一的吗?

在查看 Yii2 的 Memcached 驱动文件时,发现在有账号密码的情况下,进行二进制连接,否则进行的是简单连接。

相关

Yii2 版本:2.0.13
位置:vendor/yiisoft/yii2/caching/MemCache.php:225

if ($this->useMemcached) {    $this->_cache = $this->persistentId !== null ? new \Memcached($this->persistentId) : new \Memcached();    if ($this->username !== null || $this->password !== null) {        $this->_cache->setOption(\Memcached::OPT_BINARY_PROTOCOL, true);        $this->_cache->setSaslAuthData($this->username, $this->password);
    }


潇湘沐
浏览 543回答 1
1回答

汪汪一只猫

因为Memcached二进制协议才支持SASL。所以这里的逻辑是,你要用密码和账号,所以要开二进制协议。
随时随地看视频慕课网APP
我要回答