$dependency = [
'class' => 'yii\caching\DbDependency',
'sql' => "SELECT updated_at FROM fm_competitions_matches WHERE id = {$round->id}"
];
if ($this->beginCache('Round'.$round->id, [
'duration' => 3600,
'dependency'=> $dependency,
])) {
// Кешируемый код
$this->endCache();
}
Yii::$app->cache->delete('Round'.$round->id);