Package | system.caching |
---|---|
Inheritance | class CApcCache » CCache » CApplicationComponent » CComponent |
Implements | ArrayAccess, ICache, IApplicationComponent |
Since | 1.0 |
Source Code | framework/caching/CApcCache.php |
Property | Type | Description | Defined By |
---|---|---|---|
behaviors | array | the behaviors that should be attached to this component. | CApplicationComponent |
hashKey | boolean | whether to md5-hash the cache key for normalization purposes. | CCache |
isInitialized | boolean | Checks if this application component has been initialized. | CApplicationComponent |
keyPrefix | string | a string prefixed to every cache key so that it is unique. | CCache |
serializer | array|boolean | the functions used to serialize and unserialize cached data. | CCache |
useApcu | boolean | whether to use apcu or apc as the underlying caching extension. | CApcCache |
Method | Description | Defined By |
---|---|---|
__call() | Calls the named method which is not a class method. | CComponent |
__get() | Returns a property value, an event handler list or a behavior based on its name. | CComponent |
__isset() | Checks if a property value is null. | CComponent |
__set() | Sets value of a component property. | CComponent |
__unset() | Sets a component property to be null. | CComponent |
add() | Stores a value identified by a key into cache if the cache does not contain this key. | CCache |
asa() | Returns the named behavior object. | CComponent |
attachBehavior() | Attaches a behavior to this component. | CComponent |
attachBehaviors() | Attaches a list of behaviors to the component. | CComponent |
attachEventHandler() | Attaches an event handler to an event. | CComponent |
canGetProperty() | Determines whether a property can be read. | CComponent |
canSetProperty() | Determines whether a property can be set. | CComponent |
delete() | Deletes a value with the specified key from cache | CCache |
detachBehavior() | Detaches a behavior from the component. | CComponent |
detachBehaviors() | Detaches all behaviors from the component. | CComponent |
detachEventHandler() | Detaches an existing event handler. | CComponent |
disableBehavior() | Disables an attached behavior. | CComponent |
disableBehaviors() | Disables all behaviors attached to this component. | CComponent |
enableBehavior() | Enables an attached behavior. | CComponent |
enableBehaviors() | Enables all behaviors attached to this component. | CComponent |
evaluateExpression() | Evaluates a PHP expression or callback under the context of this component. | CComponent |
flush() | Deletes all values from cache. | CCache |
get() | Retrieves a value from cache with a specified key. | CCache |
getEventHandlers() | Returns the list of attached event handlers for an event. | CComponent |
getIsInitialized() | Checks if this application component has been initialized. | CApplicationComponent |
hasEvent() | Determines whether an event is defined. | CComponent |
hasEventHandler() | Checks whether the named event has attached handlers. | CComponent |
hasProperty() | Determines whether a property is defined. | CComponent |
init() | Initializes this application component. | CApcCache |
mget() | Retrieves multiple values from cache with the specified keys. | CCache |
offsetExists() | Returns whether there is a cache entry with a specified key. | CCache |
offsetGet() | Retrieves the value from cache with a specified key. | CCache |
offsetSet() | Stores the value identified by a key into cache. | CCache |
offsetUnset() | Deletes the value with the specified key from cache | CCache |
raiseEvent() | Raises an event. | CComponent |
set() | Stores a value identified by a key into cache. | CCache |
Method | Description | Defined By |
---|---|---|
addValue() | Stores a value identified by a key into cache if the cache does not contain this key. | CApcCache |
deleteValue() | Deletes a value with the specified key from cache | CApcCache |
flushValues() | Deletes all values from cache. | CApcCache |
generateUniqueKey() | CCache | |
getValue() | Retrieves a value from cache with a specified key. | CApcCache |
getValues() | Retrieves multiple values from cache with the specified keys. | CApcCache |
setValue() | Stores a value identified by a key in cache. | CApcCache |
whether to use apcu or apc as the underlying caching extension. If true apcu will be used. If false apc. will be used. Defaults to false.
protected boolean addValue(string $key, string $value, integer $expire)
| ||
$key | string | the key identifying the value to be cached |
$value | string | the value to be cached |
$expire | integer | the number of seconds in which the cached value will expire. 0 means never expire. |
{return} | boolean | true if the value is successfully stored into cache, false otherwise |
protected function addValue($key,$value,$expire)
{
return $this->useApcu ? apcu_add($key,$value,$expire) : apc_add($key,$value,$expire);
}
Stores a value identified by a key into cache if the cache does not contain this key. This is the implementation of the method declared in the parent class.
protected boolean deleteValue(string $key)
| ||
$key | string | the key of the value to be deleted |
{return} | boolean | if no error happens during deletion |
protected function deleteValue($key)
{
return $this->useApcu ? apcu_delete($key) : apc_delete($key);
}
Deletes a value with the specified key from cache This is the implementation of the method declared in the parent class.
protected boolean flushValues()
| ||
{return} | boolean | whether the flush operation was successful. |
protected function flushValues()
{
return $this->useApcu ? apcu_clear_cache() : apc_clear_cache('user');
}
Deletes all values from cache. This is the implementation of the method declared in the parent class.
protected string|boolean getValue(string $key)
| ||
$key | string | a unique key identifying the cached value |
{return} | string|boolean | the value stored in cache, false if the value is not in the cache or expired. |
protected function getValue($key)
{
return $this->useApcu ? apcu_fetch($key) : apc_fetch($key);
}
Retrieves a value from cache with a specified key. This is the implementation of the method declared in the parent class.
protected array getValues(array $keys)
| ||
$keys | array | a list of keys identifying the cached values |
{return} | array | a list of cached values indexed by the keys |
protected function getValues($keys)
{
return $this->useApcu ? apcu_fetch($keys) : apc_fetch($keys);
}
Retrieves multiple values from cache with the specified keys.
public void init()
|
public function init()
{
parent::init();
$extension=$this->useApcu ? 'apcu' : 'apc';
if(!extension_loaded($extension))
throw new CException(Yii::t('yii',"CApcCache requires PHP {extension} extension to be loaded.",
array('{extension}'=>$extension)));
}
Initializes this application component. This method is required by the IApplicationComponent interface. It checks the availability of APC.
protected boolean setValue(string $key, string $value, integer $expire)
| ||
$key | string | the key identifying the value to be cached |
$value | string | the value to be cached |
$expire | integer | the number of seconds in which the cached value will expire. 0 means never expire. |
{return} | boolean | true if the value is successfully stored into cache, false otherwise |
protected function setValue($key,$value,$expire)
{
return $this->useApcu ? apcu_store($key,$value,$expire) : apc_store($key,$value,$expire);
}
Stores a value identified by a key in cache. This is the implementation of the method declared in the parent class.
Bug in APC 3.1.3b on Ubuntu
There seems to be a bug in Ubuntu's APC 3.1.3p1. If you set a value in cache and try to override this value in the same request, it will still contain the first value:
Yii::app()->cache->set('key1','1'); Yii::app()->cache->set('key1','2'); echo Yii::app()->cache->get('key1'); // output: 1
One workaround is, to uninstall the packaged version and use pecl to update to a more recent version of APC.
Compatibility with APCu v4.0
I am trying out this class with APCu, the new version of APC for PHP 5.5 that handles the user cache only (PHP 5.5 comes with its own opcode cache). Everything seems fine so far, except for one issue. When flushing the cache, I get the following PHP warning:
apc_clear_cache() expects exactly 0 parameters CApcCache.php line 106 (using Yii 1.1.13, PHP 5.5.0, APCu v4.0.1 on Windows 7)
It turns out that apc_clear_cache() in APCu v4.0.1 is not fully backwards compatible with APC v3.x. More details here: https://github.com/krakjoe/apcu/issues/18
Signup or Login in order to comment.