美文网首页
Redis配置 2016.12.05

Redis配置 2016.12.05

作者: yeqingwen | 来源:发表于2016-12-17 20:46 被阅读0次

    项目地址

    https://github.com/yiisoft/yii2-redis/blob/master/docs/guide/README.md

    1、add "yiisoft/yii2-redis":"~2.0.0"  to the require section of your composer.json

    2、运行  : 

    composer install

    3、编辑配置文件 web.php

    //....

    'components' => [

        'redis' => [

            'class'=>'yii\redis\Connection',

            'hostname'=>'localhost',

            'port'=>6379,

            'database'=>0,

        ],

    ]

    相关文章

      网友评论

          本文标题:Redis配置 2016.12.05

          本文链接:https://www.haomeiwen.com/subject/ttylmttx.html