Yii2 裡使用Redis擴充

來源:互聯網
上載者:User

Yii2 裡使用Redis擴充

Redis是個很不錯的Nosql資料庫,比Memcached的好處是能持久化資料。Yii2裡使用Redis ,首先要擴充Redis。可以在composer.json 裡添加 redis

"require": {        "php": ">=5.4.0",        "yiisoft/yii2": ">=2.0.5",        "yiisoft/yii2-bootstrap": "*",        "yiisoft/yii2-swiftmailer": "*",        "yiisoft/yii2-smarty": "*",        "yiisoft/yii2-redis": "*"    },

然後使用命令 composer update,或者直接使用命令 composer update --prefer-dist yii-soft/yii2-redis。

接下來就是配置組件了。

//Redis'redis' => [    'class' => 'yii\redis\Connection',    'hostname' => '127.0.0.1',    'port' => 6379,    'database' => 0,//預設有16個庫0-15,如果是叢集的話,只有一個0。],

最後可以可以使用了。

$redis = Yii::$app->redis;$redis->set('city', 'Beijing');$value = $redis->get('city');echo 'The value of city in redis is: ', $value;

 

在Yii2中使用Pjax導致Yii2內聯指令碼載入失敗的問題

Yii2 實現修改密碼功能

Yii 使用者登陸機制 

Yii中引入js和css檔案 

Yii 不完全解決方案 

Yii CGridView 基本使用

Yii架構分布式緩衝的實現方案

Yii 的詳細介紹:請點這裡
Yii 的:請點這裡

本文永久更新連結地址:

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.