找到該檔案
thinkphp/library/think/cache/driver/redis.php
進行新增方法
在這裡 我就舉例幾個 如何新增 新增的方法檢視 redis教程
* 返回列表中指定區間內的元素
* */
public function lrange($key,$start,$end)
/*** 在list左邊新增元素
* */
public function lpush($key,$value)
/*** 在list右邊新增元素
* */
public function rpush($key,$value)
/*** 返回並移除列表中的第乙個元素
* */
public function lpop($key)
/*** 返回並移除列表的最後乙個元素。
* */
public function rpop($key)
如果還需要新增其他的方法 根據手冊某個方法以及傳值
去修改$this->handler-> 後面的方法函式
ThinkPHP使用Memcached快取資料
thinkphp預設使用檔案快取資料,支援memcache等其他快取方式,有兩個php擴充套件 memcache和memcached,memcahe官方有說明,主要說一下memcached。相對於php memcache,php memcached是基於原生的c的libmemcached的擴充套件,...
thinkphp5的Redis快取配置
thinkphp採用cache類提供快取功能支援,採用驅動方式,在使用快取之前需要進行初始化操作。支援的快取型別包括file memcache wincache sqlite redis和xcache等,預設情況下是file型別,配置redis快取可以單一配置redis也可以同時使用多個快取型別。配...
SpringBoot整合Redis實現快取
1.引入spring boot starter data redis依賴。org.springframework.boot spring boot starter data redis spring.redis.host 118.24.44.1693.使用redistemplate操作redis。r...