Class yii\caching\ApcCache
ApcCache 用应用组件的方式提供 APC 缓存。
要使用这个应用组件,必须加载 APC PHP extension 扩展。
或者加载 APCu PHP extension 的话,设置 useApcu
为 true
也可以。
如果要在 CLI 环境使用 APC 或 APCu 功能,应该把 "apc.enable_cli = 1" 添加到 php.ini。
可以参考 yii\caching\Cache 查看 ApcCache 支持的通用的缓存操作方法。
在 Cache 上更多的详情和详细的使用信息,请参考 guide article on caching。
公共属性
属性 | 类型 | 描述 | 被定义在 |
---|---|---|---|
$behaviors | yii\base\Behavior[] | List of behaviors attached to this component | yii\base\Component |
$defaultDuration | integer | 以秒为单位的默认的缓存持续时间。默认是 0,意味着永不过期。 在使用 set() 时并且没有明确传递时间参数时才会使用这个属性。 | yii\caching\Cache |
$keyPrefix | string | 每个缓存键的一个字符串前缀,据此可以保证在整个缓存系统层面上它都是全局唯一的。 如果出现相同的缓存驱动在多个不同的应用环境下使用,建议你为每个应用环境里的这个缓存系统 设置一个唯一的缓存键前缀。 为保证系统的共用性,你应该只使用由字母和数字组成的字符串。 | yii\caching\Cache |
$serializer | null|array|false | 用来序列化和反序列化缓存数据的函数。默认是 null,这意味着
默认使用 PHP 的 serialize() 和 unserialize() 两个函数。如果你想使用更高效的序列化功能
(比如 [igbinary](http://pecl. |
yii\caching\Cache |
$useApcu | boolean | 使用 apcu 或者 apc 作为最终确定的缓存扩展。 如果是 true,表示使用 [apcu](http://pecl. | yii\caching\ApcCache |
公共方法
方法 | 描述 | 被定义在 |
---|---|---|
__call() | Calls the named method which is not a class method. | yii\base\Component |
__clone() | This method is called after the object is created by cloning an existing one. | yii\base\Component |
__construct() | Constructor. | yii\base\BaseObject |
__get() | Returns the value of a component property. | yii\base\Component |
__isset() | Checks if a property is set, i.e. defined and not null. | yii\base\Component |
__set() | Sets the value of a component property. | yii\base\Component |
__unset() | Sets a component property to be null. | yii\base\Component |
add() | 如果对应缓存键不存在,那么把由它指明的缓存数据存入缓存中, 如果缓存键存在,那么什么也不会做。 | yii\caching\Cache |
attachBehavior() | Attaches a behavior to this component. | yii\base\Component |
attachBehaviors() | Attaches a list of behaviors to the component. | yii\base\Component |
behaviors() | Returns a list of behaviors that this component should behave as. | yii\base\Component |
buildKey() | 根据给定的键构建标准的缓存键。 | yii\caching\Cache |
canGetProperty() | Returns a value indicating whether a property can be read. | yii\base\Component |
canSetProperty() | Returns a value indicating whether a property can be set. | yii\base\Component |
className() | Returns the fully qualified name of this class. | yii\base\BaseObject |
delete() | 根据指定的键从缓存中删除数据值。 | yii\caching\Cache |
detachBehavior() | Detaches a behavior from the component. | yii\base\Component |
detachBehaviors() | Detaches all behaviors from the component. | yii\base\Component |
ensureBehaviors() | Makes sure that the behaviors declared in behaviors() are attached to this component. | yii\base\Component |
exists() | 检测指定的键是否存在缓存中。 如果缓存数据量大的话,这比从缓存中直接获取值稍快些。 注意,如果缓存数据有缓存依赖, 该方法不会检测缓存依赖是否发生变化。所以有可能调用 get() 方法返回 false, 而调用该方法返回 true。 | yii\caching\ApcCache |
flush() | 从缓存中删除所有的值。 如果缓存系统在多个应用中共享的话,请谨慎执行该操作。 | yii\caching\Cache |
get() | 根据指定的键从缓存中获取数据。 | yii\caching\Cache |
getBehavior() | Returns the named behavior object. | yii\base\Component |
getBehaviors() | Returns all behaviors attached to this component. | yii\base\Component |
getOrSet() | 联合了 set() 和 get() 两个方法的大方法,可以根据 $key 获取值, 或者在 $key 对应的缓存数据不存在的情况下,存入 $callable 执行后的结果作为缓存数据。 | yii\caching\Cache |
hasEventHandlers() | Returns a value indicating whether there is any handler attached to the named event. | yii\base\Component |
hasMethod() | Returns a value indicating whether a method is defined. | yii\base\Component |
hasProperty() | Returns a value indicating whether a property is defined for this component. | yii\base\Component |
init() | 初始化应用组件。 检测需要的扩展是否加载。 | yii\caching\ApcCache |
madd() | 存入多个数据到缓存中。每个数据项都包含缓存键和对应的缓存值。 如果缓存中已经存在了对应的键,那么这个存在的缓存值和过期时间将会继续保留。 | yii\caching\Cache |
mget() | 根据多个缓存的键一次从缓存中获取多个对应的缓存数据。 一些缓存驱动(比如 memcache,apc)允许一次性获取多个缓存数据,这无疑会提高性能。 如果当前环境的缓存系统不支持该特性的话, 该方法也会尝试模拟实现。 | yii\caching\Cache |
mset() | 存入多个数据到缓存中。每个数据项都包含缓存键和对应的缓存值。 如果相同的键已经存在缓存中,那么之前的缓存数据和过期时间, 将会被新的缓存数据和缓存时间分别替换。 | yii\caching\Cache |
multiAdd() | 存入多个数据到缓存中。每个数据项都包含缓存键和对应的缓存值。 如果缓存中已经存在了对应的键,那么这个存在的缓存值和过期时间将会继续保留。 | yii\caching\Cache |
multiGet() | 根据多个缓存的键一次从缓存中获取多个对应的缓存数据。 一些缓存驱动(比如 memcache,apc)允许一次性获取多个缓存数据,这无疑会提高性能。 如果当前环境的缓存系统不支持该特性的话, 该方法也会尝试模拟实现。 | yii\caching\Cache |
multiSet() | 存入多个数据到缓存中。每个数据项都包含缓存键和对应的缓存值。 如果相同的键已经存在缓存中,那么之前的缓存数据和过期时间, 将会被新的缓存数据和缓存时间分别替换。 | yii\caching\Cache |
off() | Detaches an existing event handler from this component. | yii\base\Component |
offsetExists() | 返回是否指定的键存在缓存中的布尔值。 该方法是实现 ArrayAccess 接口必须实现的方法。 | yii\caching\Cache |
offsetGet() | 根据指定的键从缓存中获取数据。 该方法是实现 ArrayAccess 接口必须实现的方法。 | yii\caching\Cache |
offsetSet() | 把由键指定的值存入缓存中。 如果缓存中已经有来这个键,那么之前存在的缓存值 将会被新值替换。如果要增加过期参数和依赖,请使用 set() 方法。 该方法是实现 ArrayAccess 接口必须实现的方法。 | yii\caching\Cache |
offsetUnset() | 根据指定的键从缓存中删除数据。 该方法是实现 ArrayAccess 接口必须实现的方法。 | yii\caching\Cache |
on() | Attaches an event handler to an event. | yii\base\Component |
set() | 根据键存入缓存值。 如果相同的键已经存在缓存中,那么之前的缓存数据和过期时间, 将会被新的缓存数据和缓存时间分别替换。 | yii\caching\Cache |
trigger() | Triggers an event. | yii\base\Component |
受保护的方法
方法 | 描述 | 被定义在 |
---|---|---|
addValue() | 在指定的键不存在的情况下,才存入指定的缓存值。 该方法从父类中声明,在子类里实现。 | yii\caching\ApcCache |
addValues() | 一次性添加多个键值对到缓存中。 | yii\caching\ApcCache |
deleteValue() | 根据指定的键把数据从缓存中删除。 该方法从父类中声明,在子类这里实现。 | yii\caching\ApcCache |
flushValues() | 从缓存中删除所有值。 该方法从父类中声明,在子类这里实现。 | yii\caching\ApcCache |
getValue() | 根据指定的键从缓存中获取缓存数据。 该方法从父类中声明,在子类这里实现。 | yii\caching\ApcCache |
getValues() | 根据多个缓存键从缓存中一次获取多个缓存数据。 | yii\caching\ApcCache |
setValue() | 根据指定的键把数据存入缓存中。 该方法从父类中声明,在子类这里实现。 | yii\caching\ApcCache |
setValues() | 一次性存入多个键值对到缓存中。 | yii\caching\ApcCache |
属性详情
方法详情
在指定的键不存在的情况下,才存入指定的缓存值。 该方法从父类中声明,在子类里实现。
protected boolean addValue($key, $value, $duration) | ||
$key | string | 指明缓存值的键。 |
$value | mixed | 要缓存的值。大多数情况下它是一个字符串。如果禁用 $serializer, 它也可以是其它的数据类型。 |
$duration | integer | 缓存值过期的秒数。0 表示永不过期。 |
return | boolean | 如果成功存入缓存返回 true,否则返回 false。 |
---|
一次性添加多个键值对到缓存中。
protected array addValues($data, $duration) | ||
$data | array | 数组的键就是缓存的键,值就是缓存的值。 |
$duration | integer | 缓存值过期的秒数。0 表示永不过期。 |
return | array | 那些缓存失败了的键组成的数组。 |
---|
根据指定的键把数据从缓存中删除。 该方法从父类中声明,在子类这里实现。
protected boolean deleteValue($key) | ||
$key | string | 指明要删除缓存的键。 |
return | boolean | 如果删除过程没有发生错误。 |
---|
检测指定的键是否存在缓存中。 如果缓存数据量大的话,这比从缓存中直接获取值稍快些。 注意,如果缓存数据有缓存依赖, 该方法不会检测缓存依赖是否发生变化。所以有可能调用 get() 方法返回 false, 而调用该方法返回 true。
public boolean exists($key) | ||
$key | mixed | 指明缓存值的键。可以是一个简单的字符串, 或者是一个包含着缓存键的复杂数据结构。 |
return | boolean | 如果缓存值存在返回 true,如果缓存值不存在或者已经过期则返回 false。 |
---|
从缓存中删除所有值。 该方法从父类中声明,在子类这里实现。
protected boolean flushValues() | ||
return | boolean | 是否成功执行了删除操作。 |
---|
根据指定的键从缓存中获取缓存数据。 该方法从父类中声明,在子类这里实现。
protected mixed|false getValue($key) | ||
$key | string | 指明缓存数据的唯一键。 |
return | mixed|false | 缓存中的值,如果缓存值不存在或者已经过期则返回 false。 |
---|
根据多个缓存键从缓存中一次获取多个缓存数据。
protected array getValues($keys) | ||
$keys | array | 指明缓存数据的缓存键列表。 |
return | array | 由缓存键组成下标的缓存数据列表。 |
---|
初始化应用组件。 检测需要的扩展是否加载。
public void init() |
根据指定的键把数据存入缓存中。 该方法从父类中声明,在子类这里实现。
protected boolean setValue($key, $value, $duration) | ||
$key | string | 指明缓存值的键。 |
$value | mixed | 要缓存的值。大多数情况下它是一个字符串。如果禁用 $serializer, 它也可以是其它的数据类型。 |
$duration | integer | 缓存值过期的秒数。0 表示永不过期。 |
return | boolean | 如果成功存入缓存返回 true,否则返回 false。 |
---|
一次性存入多个键值对到缓存中。
protected array setValues($data, $duration) | ||
$data | array | 数组的键就是缓存的键,值就是缓存的值。 |
$duration | integer | 缓存值过期的秒数。0 表示永不过期。 |
return | array | 那些缓存失败了的键组成的数组。 |
---|