/**
* 返回列表中指定区间内的元素
* */
public function lrange($key,$start,$end){
return $this->handler->lrange($key,$start,$end);
}
/**
* 在list左边新增元素
* */
public function lpush($key,$value){
return $this->handler->lPush($key,$value);
}
/**
* 在list右边新增元素
* */
public function rpush($key,$value){
return $this->handler->rPush($key,$value);
}
/**
* 返回并移除列表中的第一个元素
* */
public function lpop($key){
return $this->handler->lPop($key);
}
/**
* 返回并移除列表的最后一个元素。
* */
public function rpop($key){
return $this->handler->rPop($key);
}
到此这篇关于thinkphp5redis缓存新增方法的文章就介绍到这了,更多相关thinkphp5 redis缓存新增方法内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!