当前位置:Gxlcms > PHP教程 > redis操作有哪几种

redis操作有哪几种

时间:2021-07-01 10:21:17 帮助过:5人阅读

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网其它相关文章!

人气教程排行