Laravel file cache garbage collection.
solution9th/laravel-file-cache-gc is a Laravel package for laravel file cache garbage collection..
It currently has 0 GitHub stars and 4.133 downloads on Packagist (latest version v0.0.2).
Install it with composer require solution9th/laravel-file-cache-gc.
Discover more Laravel packages by solution9th
or browse all Laravel packages to compare alternatives.
Last updated
In some cases, file cache driver is the more suitable choice for our project, but laravel do not clean up the old files unless you get it, and the expired cache files may fill up the disk.
This package create an artisan command cache:file-gc do the garbage collection work that help you clean up the expired cache files.
composer require solution9th/laravel-file-cache-gc
-d to output the deleted files.php artisan cache:file-gc
app/Console/Kernel.php.$schedule->command('cache:file-gc')->dailyAt('02:00');
MIT.