laravel---清除缓存
作者:互联网
在使用laravel框架的时候,在做网站迁移的时候,该框架的缓存非常严重,如何清理呢?
1、清除应用程序缓存
php artisan cache:clear
2、清理路由缓存
php artisan route:cache
3、清除配置缓存
php artisan config:cache
4、清除视图缓存
php artisan view:clear
常见适用场景:
1、修改了 env 文件里的数据库配置,未生效,需要清除【配置缓存】
标签:laravel,缓存,清除,cache,---,artisan,php 来源: https://www.cnblogs.com/e0yu/p/16487979.html