Properties

$drivers

$drivers : array

驱动

Type

array

$namespace

$namespace : string

驱动的命名空间

Type

string

Methods

__construct()

__construct(\think\App  $app) 

Parameters

\think\App $app

forgetDriver()

forgetDriver(array|string|null  $name = null) : $this

移除一个驱动实例

Parameters

array|string|null $name

Returns

$this

getDefaultDriver()

getDefaultDriver() : string|null

默认驱动

Returns

string|null

__call()

__call(string  $method, array  $parameters) : mixed

动态调用

Parameters

string $method
array $parameters

Returns

mixed

getConfig()

getConfig(null|string  $name = null, mixed  $default = null) : mixed

获取缓存配置

Parameters

null|string $name

名称

mixed $default

默认值

Returns

mixed

getStoreConfig()

getStoreConfig(string  $store, string  $name = null, null  $default = null) : array

获取驱动配置

Parameters

string $store
string $name
null $default

Returns

array

store()

store(string  $name = null) : \think\cache\Driver

连接或者切换缓存

Parameters

string $name

连接配置名

Returns

\think\cache\Driver

clear()

clear() : boolean

清空缓冲池

Returns

boolean

get()

get(string  $key, mixed  $default = null) : mixed

读取缓存

Parameters

string $key

缓存变量名

mixed $default

默认值

Returns

mixed

set()

set(string  $key, mixed  $value, integer|\DateTime  $ttl = null) : boolean

写入缓存

Parameters

string $key

缓存变量名

mixed $value

存储数据

integer|\DateTime $ttl

有效时间 0为永久

Returns

boolean

delete()

delete(string  $key) : boolean

删除缓存

Parameters

string $key

缓存变量名

Returns

boolean

getMultiple()

getMultiple(\think\iterable  $keys, mixed  $default = null) : \think\iterable

读取缓存

Parameters

\think\iterable $keys

缓存变量名

mixed $default

默认值

Throws

\think\exception\InvalidArgumentException

Returns

\think\iterable

setMultiple()

setMultiple(\think\iterable  $values, null|integer|\DateInterval  $ttl = null) : boolean

写入缓存

Parameters

\think\iterable $values

缓存数据

null|integer|\DateInterval $ttl

有效时间 0为永久

Returns

boolean

deleteMultiple()

deleteMultiple(\think\iterable  $keys) : boolean

删除缓存

Parameters

\think\iterable $keys

缓存变量名

Throws

\think\exception\InvalidArgumentException

Returns

boolean

has()

has(string  $key) : boolean

判断缓存是否存在

NOTE: It is recommended that has() is only to be used for cache warming type purposes and not to be used within your live applications operations for get/set, as this method is subject to a race condition where your has() will return true and immediately after, another script can remove it making the state of your app out of date.

Parameters

string $key

缓存变量名

Returns

boolean

tag()

tag(string|array  $name) : \think\cache\TagSet

缓存标签

Parameters

string|array $name

标签名

Returns

\think\cache\TagSet

driver()

driver(null|string  $name = null) : mixed

获取驱动实例

Parameters

null|string $name

Returns

mixed

getDriver()

getDriver(string  $name) : mixed

获取驱动实例

Parameters

string $name

Returns

mixed

resolveType()

resolveType(\think\string  $name) : mixed

获取驱动类型

Parameters

\think\string $name

Returns

mixed

resolveConfig()

resolveConfig(\think\string  $name) : mixed

获取驱动配置

Parameters

\think\string $name

Returns

mixed

resolveClass()

resolveClass(string  $type) : string

获取驱动类

Parameters

string $type

Returns

string

resolveParams()

resolveParams(  $name) : array

获取驱动参数

Parameters

$name

Returns

array

createDriver()

createDriver(string  $name) : mixed

创建驱动

Parameters

string $name

Returns

mixed