Laravel Improve Site Performance By Caching Entire Response

By Hardik Savani November 5, 2023 Category : Laravel

we always want to speed up our website to load and try to improve performance using cache. in this tutorial i will explain how to make faster load site in laravel 5, laravel 6, laravel 7, laravel 8, laravel 9 and laravel 10 application.

If you are working on blog website or some content website then i think you have same response always in blade file. so, if we cache an entire response then it make faster your site. here we will use laravel-responsecache composer package for cache response.

laravel-responsecache provide several option to cache response. if you don't want to cache response on some routes then you can use their middleware. Also you can simple configuration by responsecache.php config file. also you can simply clear cache by their command.

First we have to install laravel-responsecache composer package by following command, so just run bellow command on your project root directory.

composer require spatie/laravel-responsecache

After run successfully command, you have to run bellow command to create config file.

php artisan vendor:publish --provider="Spatie\ResponseCache\ResponseCacheServiceProvider"

now you can see responsecache.php file in config folder.

You have to use middleware in Kernel.php file. so add like as bellow:

app/Http/Kernel.php

...

protected $middlewareGroups = [

'web' => [

...

\Spatie\ResponseCache\Middlewares\CacheResponse::class,

],

...

protected $routeMiddleware = [

...

'doNotCacheResponse' => \Spatie\ResponseCache\Middlewares\DoNotCacheResponse::class,

];

You can clear response cache by following command:

php artisan responsecache:clear

If you do not want to cache some routes then use middleware like as bellow:

Route::get('/auth/logout', ['middleware' => 'doNotCacheResponse', 'uses' => 'AuthController@getLogout']);

you can specify the number of minutes these routes should be cached by following way:

Route::get('/my-special-snowflake', 'SnowflakeController@index')->middleware('cacheResponse:5');

You can try and check it...

Tags :
Shares