yii memcache 在 aliyun 开放缓存服务OCS运行方法

 yii memcache 在阿里云上的解决方法,查看下面的链接


主要是aliyun ocs 需要配置 username 和 password ,这个与yii常规 CMemCache 不太一样

$connect = new Memcached; 
$connect->setOption(Memcached::OPT_COMPRESSION, false);
 $connect->setOption(Memcached::OPT_BINARY_PROTOCOL, true); 
$connect->addServer('host', port); 
$connect->setSaslAuthData('username', 'password'); 
$connect->set("hello", "world"); echo 'hello: ',$connect->get("hello"); 
$connect->quit(); 

我用以上代码,在服务器上能访问OCS,现在就是不会弄yii 中memcache的配置方法,还请帮忙,谢谢~~


http://help.aliyun.com/view/11108324_13444498.html?spm=5176.7225337.1997284509.3.IEeHfl

https://github.com/aarondfrancis/yii-CMemCacheSASL


还有,上面的提示中有一点有误


          'cache'=>array(
            'class'=>'CMemCacheSASL',
            'server'=> array(
              'host'=>'host',
              'port'=>11211,
              'password'=>'xxxxxx',
              'username'=>'xxxxxx'
            ),
          ),


记录的匆忙,也许对后来的码农盆友们有用~~



yii memcache 在 aliyun 开放缓存服务OCS运行方法_第1张图片

你可能感兴趣的:(yii memcache 在 aliyun 开放缓存服务OCS运行方法)