服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - PHP教程 - thinkphp5redis缓存新增方法实例讲解

thinkphp5redis缓存新增方法实例讲解

2021-11-09 15:08科小洋-lmy PHP教程

这篇文章主要介绍了thinkphp5redis缓存新增方法实例讲解,redis是项目中最常用的缓存,有正在使用的同学可以看下

找到该文件
thinkphp/library/think/cache/driver/Redis.php
进行新增方法

在这里 我就举例几个 如何添加 添加的方法查看 redis教程

thinkphp5redis缓存新增方法实例讲解

/**
   * 返回列表中指定区间内的元素
   * */
  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-> 后面的方法函数

到此这篇关于thinkphp5redis缓存新增方法的文章就介绍到这了,更多相关thinkphp5 redis缓存新增方法内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/qq_37468919/article/details/114999626

延伸 · 阅读

精彩推荐