相关关键词
关于我们
最新文章
YII框架中使用memcache的方法详解
发布日期:2017-08-02 00:00:00
58
本文实例讲述了YII框架中使用memcache的方法。分享给大家供大家参考,具体如下:
yii中可以很方便的使用memcache
一.配置
在main.php的components中加入cache配置
array( 'components'=>array( 'cache'=>array( 'class'=>'CMemCache', 'servers'=>array( array( 'host'=>'server1', 'port'=>11211, 'weight'=>60, ), array( 'host'=>'server2', 'port'=>11211, 'weight'=>40, ), ), ), ), )