PHP code example of herroffizier / yii2-ar-tag-cache
1. Go to this page and download the library: Download herroffizier/yii2-ar-tag-cache library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
herroffizier / yii2-ar-tag-cache example snippets
public function behaviors()
{
return [
'arCache' => [
'class' => \herroffizier\yii2artc\Behavior::className(),
],
];
}
// Get tag dependency:
$dependency = $model->tagDependency;
// Attach dependency to cache:
Yii::$app->cache->set('cache', 'test', 0, $dependency);
// Now if you call save() or delete() for any instance of $model's class, cache will be invalidated.
// Also you may force cache invalidation without modifying models:
$model->invalidateCache();