yii框架下使用redis
阿新 • • 發佈:2019-05-15
就是 hive 運行程序 port ive config brush alias col
1 首先獲取到 yii2-redis-master.zip 壓縮包
下載地址
https://github.com/yiisoft/yii2-redis/archive/master.zip
2 把下載的擴展文件放到vendor/yiisoft/下,命名為yii2-redis
3 修改vender/yiisoft/下的extensions.php,加入redis擴展
‘yiisoft/yii2-redis‘ => array ( ‘name‘ => ‘yiisoft/yii2-redis‘, ‘version‘ => ‘2.2.0.0‘, ‘alias‘ => array ( ‘@yii/redis‘ => $vendorDir . ‘/yiisoft/yii2-redis‘, ), ),
4 配置Yii的component也就是config下的web.php中的components
‘redis‘ => [ ‘class‘ => ‘yii\redis\Connection‘, ‘hostname‘ => ‘localhost‘, ‘port‘ => 6379, ‘database‘ => 0, //‘password‘=>‘asdf123‘, ],
這樣我們的redis就配置完成了,接下來就是驗證了
publicfunction actionIndex() { Yii::$app->redis->set(‘test‘,‘111‘); //設置redis緩存 echo Yii::$app->redis->get(‘test‘); //讀取redis緩存 exit; return $this->render(‘index‘); }
此時運行程序,頁面輸出了“111”,就說明redis配置成功了
yii框架下使用redis