\think\cacheTagSet

标签集合

Summary

Methods
Properties
Constants
__construct()
set()
append()
setMultiple()
remember()
clear()
No public properties found
No constants found
No protected methods found
$tag
$handler
N/A
No private methods found
No private properties found
N/A

Properties

$tag

$tag : array

标签的缓存Key

Type

array

$handler

$handler : \think\cache\Driver

缓存句柄

Type

Driver

Methods

__construct()

__construct(array  $tag, \think\cache\Driver  $cache) : mixed

架构函数

Parameters

array $tag

缓存标签

\think\cache\Driver $cache

缓存对象

Returns

mixed —

set()

set(string  $name, mixed  $value, int|\DateTime  $expire = null) : bool

写入缓存

Parameters

string $name

缓存变量名

mixed $value

存储数据

int|\DateTime $expire

有效时间(秒)

Returns

bool —

append()

append(string  $name) : void

追加缓存标识到标签

Parameters

string $name

缓存变量名

setMultiple()

setMultiple(iterable  $values, null|int|\DateInterval  $ttl = null) : bool

写入缓存

Parameters

iterable $values

缓存数据

null|int|\DateInterval $ttl

有效时间 0为永久

Returns

bool —

remember()

remember(string  $name, mixed  $value, int  $expire = null) : mixed

如果不存在则写入缓存

Parameters

string $name

缓存变量名

mixed $value

存储数据

int $expire

有效时间 0为永久

Returns

mixed —

clear()

clear() : bool

清除缓存

Returns

bool —