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
108
GitHub Stars
140
First Seen
Jan 21, 2026
laravel:performance-caching — jpcaparas/superpowers-laravel