找到该文件 thinkPHP/library/think/cache/driver/Redis.php 进行新增方法 在这里 我就举例几个 如何添加 添加的方法查看 redis教程
找到该文件
thinkPHP/library/think/cache/driver/Redis.php
进行新增方法
在这里 我就举例几个 如何添加 添加的方法查看 redis教程
public function lrange($key,$start,$end){
return $this->handler->lrange($key,$start,$end);
}
public function lpush($key,$value){
return $this->handler->lPush($key,$value);
}
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-> 后面的方法函数
到此这篇关于thinkphp5redis缓存新增方法的文章就介绍到这了,更多相关thinkphp5 redis缓存新增方法内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: thinkphp5redis缓存新增方法实例讲解
本文链接: https://lsjlt.com/news/122163.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0