Skip to content

Latest commit

 

History

History
48 lines (41 loc) · 1.38 KB

topics-cache.md

File metadata and controls

48 lines (41 loc) · 1.38 KB

Using the Cache component

To use the Cache component, in addition to configuring the connection as described in the Installation section, you also have to configure the cache component to be [[yii\redis\Cache]]:

return [
    //....
    'components' => [
        // ...
        'cache' => [
            'class' => 'yii\redis\Cache',
        ],
    ]
];

If you only use the redis cache (i.e., not using its ActiveRecord or Session), you can also configure the parameters of the connection within the cache component (no connection application component needs to be configured in this case):

return [
    //....
    'components' => [
        // ...
        'cache' => [
            'class' => 'yii\redis\Cache',
            'redis' => [
                'hostname' => 'localhost',
                'port' => 6379,
                'database' => 0,
            ],
        ],
    ]
];

The cache provides all methods of the [[yii\caching\CacheInterface]]. If you want to access redis specific methods that are not included in the interface, you can use them via [[yii\redis\Cache::$redis]], which is an instance of [[yii\redis\Connection]]:

Yii::$app->cache->redis->hset('mykey', 'somefield', 'somevalue');
Yii::$app->cache->redis->hget('mykey', 'somefield');
...

See [[yii\redis\Connection]] for a full list of available methods.