solution9th / laravel-file-cache-gc
Laravel file cache garbage collection.
Installs: 2 960
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 0
This package is not auto-updated.
Last update: 2025-03-23 09:27:58 UTC
README
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.
Installation
composer require solution9th/laravel-file-cache-gc
Usage
- Run the command manually, and you can with option
-d
to output the deleted files.
php artisan cache:file-gc
- As a schedule write in
app/Console/Kernel.php
.
$schedule->command('cache:file-gc')->dailyAt('02:00');
License
MIT.