0 follower

CRedisCache

Package system.caching
Inheritance class CRedisCache » CCache » CApplicationComponent » CComponent
Implements ArrayAccess, ICache, IApplicationComponent
Since 1.1.14
Source Code framework/caching/CRedisCache.php
CRedisCache implements a cache application component based on redis.

CRedisCache needs to be configured with hostname, port and database of the server to connect to. By default CRedisCache assumes there is a redis server running on localhost at port 6379 and uses the database number 0.

CRedisCache also supports the AUTH command of redis. When the server needs authentication, you can set the password property to authenticate with the server after connect.

See CCache manual for common cache operations that are supported by CRedisCache.

To use CRedisCache as the cache application component, configure the application as follows,
array(
    'components'=>array(
        'cache'=>array(
            'class'=>'CRedisCache',
            'hostname'=>'localhost',
            'port'=>6379,
            'database'=>0,
            'options'=>STREAM_CLIENT_CONNECT,
        ),
    ),
)


The minimum required redis version is 2.0.0.

Public Properties

Hide inherited properties

PropertyTypeDescriptionDefined By
behaviors array the behaviors that should be attached to this component. CApplicationComponent
database int the redis database to use. CRedisCache
hashKey boolean whether to md5-hash the cache key for normalization purposes. CCache
hostname string hostname to use for connecting to the redis server. CRedisCache
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
options int the options to pass to the flags parameter of stream_socket_client when connecting to the redis server. CRedisCache
password string the password to use to authenticate with the redis server. CRedisCache
port int the port to use for connecting to the redis server. CRedisCache
serializer array|boolean the functions used to serialize and unserialize cached data. CCache
ssl boolean Send sockets over SSL protocol. CRedisCache
timeout float timeout to use for connection to redis. CRedisCache

Public Methods

Hide inherited methods

MethodDescriptionDefined 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
executeCommand() Executes a redis command. CRedisCache
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 the application component. CCache
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

Protected Methods

Hide inherited methods

MethodDescriptionDefined By
addValue() Stores a value identified by a key into cache if the cache does not contain this key. CRedisCache
connect() Establishes a connection to the redis server. CRedisCache
deleteValue() Deletes a value with the specified key from cache CRedisCache
flushValues() Deletes all values from cache. CRedisCache
generateUniqueKey() CCache
getValue() Retrieves a value from cache with a specified key. CRedisCache
getValues() Retrieves multiple values from cache with the specified keys. CRedisCache
setValue() Stores a value identified by a key in cache. CRedisCache

Property Details

database property
public int $database;

the redis database to use. This is an integer value starting from 0. Defaults to 0.

hostname property
public string $hostname;

hostname to use for connecting to the redis server. Defaults to 'localhost'.

options property
public int $options;

the options to pass to the flags parameter of stream_socket_client when connecting to the redis server. Defaults to STREAM_CLIENT_CONNECT.

password property
public string $password;

the password to use to authenticate with the redis server. If not set, no AUTH command will be sent.

port property
public int $port;

the port to use for connecting to the redis server. Default port is 6379.

ssl property
public boolean $ssl;

Send sockets over SSL protocol. Default state is false.

timeout property
public float $timeout;

timeout to use for connection to redis. If not set the timeout set in php.ini will be used: ini_get("default_socket_timeout")

Method Details

addValue() method
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
Source Code: framework/caching/CRedisCache.php#253 (show)
protected function addValue($key,$value,$expire)
{
    if (
$expire == 0)
        return (bool)
$this->executeCommand('SETNX',array($key,$value));

    if(
$this->executeCommand('SETNX',array($key,$value)))
    {
        
$this->executeCommand('EXPIRE',array($key,$expire));
        return 
true;
    }
    else
        return 
false;
}

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.

connect() method
protected void connect()
Source Code: framework/caching/CRedisCache.php#86 (show)
protected function connect()
{
    
$this->_socket=@stream_socket_client(
        
$this->hostname.':'.$this->port,
        
$errorNumber,
        
$errorDescription,
        
$this->timeout $this->timeout ini_get("default_socket_timeout"),
        
$this->options
    
);
    if (
$this->_socket)
    {
        if(
$this->ssl)
            
stream_socket_enable_crypto($this->_socket,true,STREAM_CRYPTO_METHOD_TLS_CLIENT);
        if(
$this->password!==null)
            
$this->executeCommand('AUTH',array($this->password));
        
$this->executeCommand('SELECT',array($this->database));
    }
    else
    {
        
$this->_socket null;
        throw new 
CException('Failed to connect to redis: '.$errorDescription,(int)$errorNumber);
    }
}

Establishes a connection to the redis server. It does nothing if the connection has already been established.

deleteValue() method
protected boolean deleteValue(string $key)
$key string the key of the value to be deleted
{return} boolean if no error happens during deletion
Source Code: framework/caching/CRedisCache.php#273 (show)
protected function deleteValue($key)
{
    return (bool)
$this->executeCommand('DEL',array($key));
}

Deletes a value with the specified key from cache This is the implementation of the method declared in the parent class.

executeCommand() method
public array|bool|null|string executeCommand(string $name, array $params=array ( ))
$name string the name of the command
$params array list of parameters for the command
{return} array|bool|null|string Dependend on the executed command this method will return different data types:
  • true for commands that return "status reply".
  • string for commands that return "integer reply" as the value is in the range of a signed 64 bit integer.
  • string or null for commands that return "bulk reply".
  • array for commands that return "Multi-bulk replies".
See redis protocol description for details on the mentioned reply types.
Source Code: framework/caching/CRedisCache.php#129 (show)
public function executeCommand($name,$params=array())
{
    if(
$this->_socket===null)
        
$this->connect();

    
array_unshift($params,$name);
    
$command='*'.count($params)."\r\n";
    foreach(
$params as $arg)
        
$command.='$'.$this->byteLength($arg)."\r\n".$arg."\r\n";

    
fwrite($this->_socket,$command);

    return 
$this->parseResponse(implode(' ',$params));
}

Executes a redis command. For a list of available commands and their parameters see https://redis.io/commands.

flushValues() method
protected boolean flushValues()
{return} boolean whether the flush operation was successful.
Source Code: framework/caching/CRedisCache.php#283 (show)
protected function flushValues()
{
    return 
$this->executeCommand('FLUSHDB');
}

Deletes all values from cache. This is the implementation of the method declared in the parent class.

getValue() method
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.
Source Code: framework/caching/CRedisCache.php#205 (show)
protected function getValue($key)
{
    
$value=$this->executeCommand('GET',array($key));
    if (
$value===null)
        return 
false;
    return 
$value;
}

Retrieves a value from cache with a specified key. This is the implementation of the method declared in the parent class.

getValues() method
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
Source Code: framework/caching/CRedisCache.php#218 (show)
protected function getValues($keys)
{
    
$response=$this->executeCommand('MGET',$keys);
    
$result=array();
    
$i=0;
    foreach(
$keys as $key)
        
$result[$key]=$response[$i++];
    return 
$result;
}

Retrieves multiple values from cache with the specified keys.

setValue() method
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
Source Code: framework/caching/CRedisCache.php#237 (show)
protected function setValue($key,$value,$expire)
{
    if (
$expire==0)
        return (bool)
$this->executeCommand('SET',array($key,$value));
    return (bool)
$this->executeCommand('SETEX',array($key,$expire,$value));
}

Stores a value identified by a key in cache. This is the implementation of the method declared in the parent class.