thinkphp5redis緩存新增方法實例講解

找到該文件
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-> 後面的方法函數

到此這篇關於thinkphp5redis緩存新增方法的文章就介紹到這瞭,更多相關thinkphp5 redis緩存新增方法內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: