找到该文件
thinkphp/library/think/cache/driver/Redis.php
进行新增方法
在这里 我就举例几个 如何添加 添加的方法查看 redis教程

/**
* 返回列表中指定区间内的元素
* */
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);
}
如果还需要添加其他的方法 根据手册某个方法以及传值
去修改$this->handler-> 后面的方法函数
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

评论(0)