Laravel中“ php artisan config:cache”和“ php artisan cache:clear”之间的区别

时间:2018-11-10 06:25:02

标签: php laravel caching

在Laravel中,有两种清除缓存的方法

php artisan cache:clear

php artisan config:cache

但是,当更改本地化,添加laravel / passport软件包等时,我仅意识到第二个可以正常工作。

它们有什么区别?

2 个答案:

答案 0 :(得分:2)

php artisan cache:clear-刷新应用程序缓存

php artisan config:cache-创建缓存文件,以更快地加载配置。 这用于配置缓存。此命令将在创建之前清除配置缓存。 More details

php artisan config:clear-删除配置缓存文件

答案 1 :(得分:0)

顺便说一句,还有

php artisan route:cache

php artisan route:clear
可用的

命令分别创建和清除路由缓存。我在Laravel Artisan Cache Commands Explained文章中找到了许多其他类似的命令。