iot-admin/app/common/cache/BaseCache.php
2023-09-20 13:54:09 +08:00

47 lines
824 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace app\common\cache;
use support\Cache;
class BaseCache
{
/**
* 缓存标签
* @var string
*/
protected $tagName;
protected $cache;
public function __construct(){
$this->tagName = get_class($this);
}
/**
* @notes 重写父类set自动打上标签
* @param string $key
* @param mixed $value
* @param null $ttl
* @return bool
* @author 乔峰
* @date 2021/12/27 14:16
*/
public function set($key, $value, $ttl = null): bool
{
return Cache::set($key, $value, $ttl);
}
/**
* @notes 清除缓存类所有缓存
* @return bool
* @author 乔峰
* @date 2021/12/27 14:16
*/
public function deleteTag(): bool
{
return Cache::delete($this->tagName);
}
}