Skip to content

Instantly share code, notes, and snippets.

@adinata-id
Created January 5, 2022 09:08
Show Gist options
  • Save adinata-id/ae26cba146f54b061f738f81a0f9ef75 to your computer and use it in GitHub Desktop.
Save adinata-id/ae26cba146f54b061f738f81a0f9ef75 to your computer and use it in GitHub Desktop.
Contoh Cache Laravel
if (Cache::has('article:slug:' . $slug)) {
$blog = Cache::get('article:slug:' . $slug);
} else {
$blog = Article::where('slug', $slug)->first();
Cache::put('article:slug:' . $slug, $blog, $seconds = 600);
}
return $this->article = $blog;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment