mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-21 09:01:33 +08:00
@@ -119,7 +119,7 @@ public function getCachedData()
|
|||||||
$value = Yii::$app->getCache()->get($key);
|
$value = Yii::$app->getCache()->get($key);
|
||||||
if ($value === false) {
|
if ($value === false) {
|
||||||
$value = /* regenerate value because it is not found in cache and then save it in cache for later use */;
|
$value = /* regenerate value because it is not found in cache and then save it in cache for later use */;
|
||||||
Yii::$app->cache->set($id, $value);
|
Yii::$app->cache->set($key, $value);
|
||||||
}
|
}
|
||||||
return $value;
|
return $value;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user