<?php if($this->redis->get('mark_'.$gid) === null){ //如果未设置 $this->redis->set('mark_'.$gid, $giftnum); //设置 $this->redis->EXPIRE('mark_'.$gid, 30*60); //设置过期时间 (30 min) }else{ $giftnum = $this->redis->get('mark_'.$gid); //从缓存中直接读取对应的值 } ?>
5. 重点是你所需要的 东东在这里很详细的讲解了
所有要用的函数只需要更改 $redis ==> $this->redis
php中操作redis库函数功能与用法可参考本站https://www.jb51.net/article/33887.htm
需要注意的是: