Introduction to clearing Laravelās cache
Cache clearing is advised when unsure. You will discover how to empty each and every cache that Laravel uses in this tutorial.
In Laravel, use php artisan optimize: clear to clear the cache. Regardless of the cache driver you are using, this works. The bootstrap files (events, compiled, config, routes, and views) will also be cleared.
Having cleared this up, let me to remind you that Laravel offers a variety of cache types. To enjoy a more granular level of control, the framework provides a command for each cache type.
Clear all caches in Laravel
As we saw, the one-stop solution to clear the cache in Laravel is the command php artisan optimize:clear
, which clears the following caches:
- The config cache.
- The bootstrap cache.
- The auto-discovered events cache.
- The application cache.
- The routes cache.
- The views cache.
Clear Laravelās application cache
To clear Laravelās application cache, run php artisan cache:clear
. Whether you are using files, Redis, or memcached, it will be wiped clean.
You can also remove one particular value from the cache using php artisan cache:forget <key> [store]
. Thatās handy when youāre trying to fix something without disrupting everything else.
And, the cherry on top, you can also clear the cache for a given tag usingĀ php artisan cache:clear --tags some-tag,some-other-tag
.
Programmatically clear Laravelās application cache
To programmatically clear Laravelās application cache, use the Cache
facade.
You can forget a given key:
use Illuminate\Support\Facades\Cache;
Cache::forget('some-key');
Or flush the cache in its entirety:
use Illuminate\Support\Facades\Cache;
Cache::flush();
And, if you donāt want to import one more class, you can use theĀ cache()
Ā helper:
cache()->forget('some-key');
cache()->flush();
Clear Laravelās config cache
To clear Laravelās config cache, runĀ php artisan config:clear
. TheĀ bootstrap/cache/config.phpĀ file will be deleted, and your fresh config settings will take over.
Clear Laravelās auto-discovered events cache
To clear Laravelās auto-discovered events cache, runĀ php artisan event:clear
Ā will delete theĀ bootstrap/cache/events.phpĀ file. Now Laravel can discover all your shiny new listeners.
Clear Laravelās routes cache
To clear Laravelās routes caches, runĀ php artisan route:clear
. Laravel will removeĀ bootstrap/cache/routes-v7.php. Your new routes are now live and ready to be explored.
Clear Laravelās scheduled tasks cache
To clear Laravelās scheduled tasks cache, run php artisan schedule:clear-cache
to wipe the slate clean.
Hereās a word of caution: Unless you have good reasons, itās not advised to run this command in a production environment. Want to know why? Check out Laravelās guide onĀ preventing task overlaps.
Clear Laravelās views cache
To clear Laravelās views cache, runĀ php artisan view:clear
. The framework will empty the content ofĀ storage/views.
Bonus: turn off Laravelās application cache
To turn off Laravelās application cache, change theĀ CACHE_DRIVER
Ā environment variable toĀ null
.
CACHE_DRIVER=null