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); } }