解决方案9th/laravel-file-cache-gc

Laravel 文件缓存垃圾回收。

v0.0.2 2019-11-09 10:03 UTC

This package is not auto-updated.

Last update: 2024-09-22 07:06:06 UTC


README

在某些情况下,文件缓存驱动程序更适合我们的项目,但 Laravel 不会清理旧文件,除非你手动操作,过期的缓存文件可能会填满磁盘。

此包创建了一个 artisan 命令 cache:file-gc,它可以帮助你清理过期的缓存文件。

安装

composer require solution9th/laravel-file-cache-gc

使用

  • 手动运行命令,你可以使用 -d 选项输出被删除的文件。
php artisan cache:file-gc
  • app/Console/Kernel.php 中编写定时任务。
$schedule->command('cache:file-gc')->dailyAt('02:00');

许可协议

MIT.