欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

yii --memcached缓存的配置_PHP教程

程序员文章站 2022-05-31 16:12:02
...
开始->运行->输入cmd,命令行打开memcached.exe,所在文件夹,输入:memcached.exe -d install 安装
输入memcached.exe -d start 启动

打开yii配置文件:config/main.php , 在components 下添加:
[html]
'memcache'=>array(
'class'=>'CMemCache',
'servers'=>array(
array(
'host'=>'127.0.0.1',
'port'=>11211,
'weight'=>60,
),
array(
'host'=>'127.0.0.1',
'port'=>11211,
'weight'=>40,
),
),
),

'memcache'=>array(
'class'=>'CMemCache',
'servers'=>array(
array(
'host'=>'127.0.0.1',
'port'=>11211,
'weight'=>60,
),
array(
'host'=>'127.0.0.1',
'port'=>11211,
'weight'=>40,
),
),
),

使用:
[html]
Yii::app()->memcache->get(id);
Yii::app()->memcache->set(id,value,time);

Yii::app()->memcache->get(id);
Yii::app()->memcache->set(id,value,time);

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/477582.htmlTechArticle开始-运行-输入cmd,命令行打开memcached.exe,所在文件夹,输入:memcached.exe -d install 安装 输入memcached.exe -d start 启动 打开yii配置文件:conf...