如果在此之前你采用的是TP5框架的,可以直接修改/thinkphp/library/cache/driver/redis.php第156行。
/** * 删除缓存 * @access public * @param string $name 缓存变量名 * @return boolean */ public function rm($name) { //return $this->handler->delete($this->getCacheKey($name)); return $this->handler->del($this->getCacheKey($name)); } /** * 清除缓存 * @access public * @param string $tag 标签名 * @return boolean */ public function clear($tag = null) { if ($tag) { // 指定标签清除 $keys = $this->getTagItem($tag); foreach ($keys as $key) { //$this->handler->delete($key); $this->handler->del($key); } $this->rm('tag_' . md5($tag)); return true; } return $this->handler->flushDB(); }拓展:被弃用的其他函数及替代函数。
版权免责声明: 本站内容部分来源于网络,请自行鉴定真假。如有侵权,违法,恶意广告,虚假欺骗行为等以上问题联系我们删除。
本文地址:https://18793.cc/index/article/view/15.html