laravel-performance-caching

Installation
SKILL.md

Caching Basics

Framework caches

php artisan route:cache
php artisan config:cache
php artisan view:cache

Clear with the corresponding clear commands when needed in deployments.

Values and queries

Cache::remember("post:{$id}", 600, fn () => Post::findOrFail($id));
Installs
34
GitHub Stars
9
First Seen
Jan 25, 2026
laravel-performance-caching — noartem/laravel-vue-skills