Redis
 sql >> Database >  >> NoSQL >> Redis

Frontend e backend a cache singola

Imposta un prefisso cache distinto per frontend e backend nei rispettivi file di configurazione.

Sto ancora usando il ramo 1.1.x, ma per il ramo 2.x dovrebbe essere la stessa cosa.

File di configurazione frontend:

'cache' => array(
        'class'     => 'system.caching.' . (!MW_DEBUG ? 'CFileCache' : 'CDummyCache'),
        'keyPrefix' => md5('frontend.' . MW_VERSION . Yii::getPathOfAlias('frontend')),
 ),

File di configurazione back-end:

'cache' => array(
        'class'     => 'system.caching.' . (!MW_DEBUG ? 'CFileCache' : 'CDummyCache'),
        'keyPrefix' => md5('backend.' . MW_VERSION . Yii::getPathOfAlias('backend')),
    ),