tp5分布式redis_TP5通过缓存数据到Redis

![](https://box.kancloud.cn/9399b11f0029e761e6d95b30e4340e75_307x373.png)

~~~

// 导入Redis类

use think\cache\driver\Redis;

// 实例化

$redis = new Redis();

~~~

~~~

/**

* 读取缓存

* @access public

* @param string $name 缓存变量名

* @param mixed $default 默认值

* @return mixed

*/

public function get($name, $default = false)

{

$value = $this->handler->get($this->getCacheKey($name));

if (is_null($value) || false === $value) {

return $default;

}

try {

$result = 0 === strpos($value, 'think_serialize:') ? unserialize(substr($value, 16)) : $value;

} catch (\Exception $e) {

$result = $default;

}

return $result;

}

~~~

~~~

/**

* 写入缓存

* @access public

* @param string $name 缓存变量名

* @param mixed $value 存储数据

* @param integer|\DateTime $expire 有效时间(秒)

* @return boolean

*/

public function set($name, $value, $expire = null)

{

if (is_null($expire)) {

$expire = $this->options['expire'];

}

if ($expire instanceof \DateTime) {

$expire = $expire->getTimestamp() - time();

}

if ($this->tag && !$this->has($name)) {

$first = true;

}

$key = $this->getCacheKey($name);

$value = is_scalar($value) ? $value : 'think_serialize:' . serialize($value);

if ($expire) {

$result = $this->handler->setex($key, $expire, $value);

} else {

$result = $this->handler->set($key, $value);

}

isset($first) && $this->setTagItem($key);

return $result;

}

~~~

~~~

/**

* 删除缓存

* @access public

* @param string $name 缓存变量名

* @return boolean

*/

public function rm($name)

{

return $this->handler->delete($this->getCacheKey($name));

} /**

* 删除缓存

* @access public

* @param string $name 缓存变量名

* @return boolean

*/

public function rm($name)

{

return $this->handler->delete($this->getCacheKey($name));

}

~~~

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值