Categories: Development

Clearing all of the cache types in Laravel

How to clear all of the different Laravel cache types using the Laravel Artisan console.

Clearing the application cache

The application cache or simply said as “cache” is the data retrieval or processing tasks that are cached to speed up the application. Most often these are set on a time expiry however to destroy all of the Laravel application cache run:

php artisan cache:clear

Clearing the route cache

After modifying any of your routes file you will need to clear the route cache this can be done with the following:

php artisan route:clear

Clearing the config cache

To refresh your config cache use:

php artisan config:clear

Clearing view cache

Not often needed as Laravel can pick up on view changes and compile the new view automatically, however you can manually clear the view cache

php artisan view:clear

Clearing the events cache

If caching Laravel events you can destroy the cache with:

php artisan event:clear

Clearing all

An all in one command to clear the above cache types at once

php artisan optimize:clear

 

Share

Recent Posts

Kennington reservoir drained drone images

A drained and empty Kennington reservoir images from a drone in early July 2024. The…

1 year ago

Merrimu Reservoir drone images

Merrimu Reservoir from drone. Click images to view larger.

1 year ago

FTP getting array of file details such as size using PHP

Using FTP and PHP to get an array of file details such as size and…

2 years ago

Creating Laravel form requests

Creating and using Laravel form requests to create cleaner code, separation and reusability for your…

2 years ago

Improving the default Laravel login and register views

Improving the default Laravel login and register views in such a simple manner but making…

2 years ago

Laravel validation for checking if value exists in the database

Laravel validation for checking if a field value exists in the database. The validation rule…

2 years ago