输入banner图图片脚本导航/分类

redis操作有哪几种

1. 删除redis

 $Ranking = $this->Redis->_delete('lianmengname');

2. 读取readis缓存


 $Ranking = $this->Redis->_get('lianmengname');

3. 存redis


if(empty($Ranking)){
      $Ranking = $this->DoubleAct->selectRanking();
      $this->Redis->_set('lianmengname',json_encode($Ranking),1800);//缓存半小时
    }

以上就是redis操作有哪几种的详细内容,更多请关注Gxl网其它相关文章!