Skip to content

Instantly share code, notes, and snippets.

@Stunc0
Last active June 27, 2017 07:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Stunc0/336b83c0428290377bb29840a065492a to your computer and use it in GitHub Desktop.
Save Stunc0/336b83c0428290377bb29840a065492a to your computer and use it in GitHub Desktop.
[Yii Cache] #Yii #cache
Yii::$app->cache;
Yii::$app->cache->get($key);
Yii::$app->cache->set($key, $object, $time);
Yii::$app->cache->getOrSet($key, function() use() {
return $something;
}, $time);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment