清除 Lumen 框架中的缓存
Clear cache in Lumen Framework
我想清除 lumen 框架中的缓存。我认为命令行与 Laravel 命令相同。我尝试 运行 这个:
php artisan clear:cache
但它给出错误 php artisan
无法打开输入文件:artisan.
需要帮助!
Lumen 没有 artisan
命令。来自Lumen Cache documentation head over to the Laravel Cache documentation where there's a section Removing Items From The Cache。来自该页面:
You may clear the entire cache using the flush method:
Cache::flush();
你应该试试:
php artisan cache:clear
我想清除 lumen 框架中的缓存。我认为命令行与 Laravel 命令相同。我尝试 运行 这个:
php artisan clear:cache
但它给出错误 php artisan
无法打开输入文件:artisan.
需要帮助!
Lumen 没有 artisan
命令。来自Lumen Cache documentation head over to the Laravel Cache documentation where there's a section Removing Items From The Cache。来自该页面:
You may clear the entire cache using the flush method:
Cache::flush();
你应该试试:
php artisan cache:clear