Properties

$handler

$handler : object

驱动句柄

Type

object

$readTimes

$readTimes : int

缓存读取次数

Type

int

$writeTimes

$writeTimes : int

缓存写入次数

Type

int

$options

$options : array

缓存参数

Type

array

$tag

$tag : string

缓存标签

Type

string

$serialize

$serialize : array

序列化方法

Type

array

Methods

has()

has(string  $name) : bool

判断缓存

Parameters

string $name

缓存变量名

Returns

bool —

get()

get(string  $name, mixed  $default = false) : mixed

读取缓存

Parameters

string $name

缓存变量名

mixed $default

默认值

Returns

mixed —

set()

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

写入缓存

Parameters

string $name

缓存变量名

mixed $value

存储数据

int|\DateTime $expire

有效时间(秒)

Returns

bool —

inc()

inc(string  $name, int  $step = 1) : false|int

自增缓存(针对数值缓存)

Parameters

string $name

缓存变量名

int $step

步长

Returns

false|int —

dec()

dec(string  $name, int  $step = 1) : false|int

自减缓存(针对数值缓存)

Parameters

string $name

缓存变量名

int $step

步长

Returns

false|int —

rm()

rm(string  $name, bool|false  $ttl = false) : bool

删除缓存

Parameters

string $name

缓存变量名

bool|false $ttl

Returns

bool —

clear()

clear(string  $tag = null) : bool

清除缓存

Parameters

string $tag

标签名

Returns

bool —

pull()

pull(string  $name) : mixed

读取缓存并删除

Parameters

string $name

缓存变量名

Returns

mixed —

remember()

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

如果不存在则写入缓存

Parameters

string $name

缓存变量名

mixed $value

存储数据

int $expire

有效时间 0为永久

Returns

mixed —

tag()

tag(string  $name, string|array  $keys = null, bool  $overlay = false) : $this

缓存标签

Parameters

string $name

标签名

string|array $keys

缓存标识

bool $overlay

是否覆盖

Returns

$this —

getTagItem()

getTagItem(string  $tag) : array

获取标签包含的缓存标识

Parameters

string $tag

缓存标签

Returns

array —

registerSerialize()

registerSerialize(callable  $serialize, callable  $unserialize, string  $prefix = 'think_serialize:') : $this

注册序列化机制

Parameters

callable $serialize

序列化方法

callable $unserialize

反序列化方法

string $prefix

序列化前缀标识

Returns

$this —

handler()

handler() : object

返回句柄对象,可执行其它高级方法

Returns

object —

getReadTimes()

getReadTimes() : mixed

Returns

mixed —

getWriteTimes()

getWriteTimes() : mixed

Returns

mixed —

__call()

__call(mixed  $method, mixed  $args) : mixed

Parameters

mixed $method
mixed $args

Returns

mixed —

__construct()

__construct(array  $options = []) : mixed

架构函数

Parameters

array $options

缓存参数

Returns

mixed —

getExpireTime()

getExpireTime(int|\DateTime  $expire) : int

获取有效期

Parameters

int|\DateTime $expire

有效期

Returns

int —

getCacheKey()

getCacheKey(string  $name) : string

获取实际的缓存标识

Parameters

string $name

缓存名

Returns

string —

setTagItem()

setTagItem(string  $name) : void

更新标签

Parameters

string $name

缓存标识

getTagKey()

getTagKey(mixed  $tag) : mixed

Parameters

mixed $tag

Returns

mixed —

serialize()

serialize(mixed  $data) : string

序列化数据

Parameters

mixed $data

Returns

string —

unserialize()

unserialize(string  $data) : mixed

反序列化数据

Parameters

string $data

Returns

mixed —