端くれプログラマの備忘録 Laravel [Laravel] キャッシュクリアのコマンド (復習)

[Laravel] キャッシュクリアのコマンド (復習)

以前にも書いてるけど、よく忘れるので復習。

[Laravel] キャッシュクリアのコマンド – 端くれプログラマの備忘録
https://www.84kure.com/blog/2018/11/10/laravel-%e3%82%ad%e3%83%a3%e3%83%83%e3%82%b7%e3%83%a5%e3%82%af%e3%83%aa%e3%82%a2%e3%81%ae%e3%82%b3%e3%83%9e%e3%83%b3%e3%83%89/

基本的なキャッシュクリアコマンド

php artisan cache:clear   # Flush the application cache
php artisan config:clear # Remove the configuration cache file
php artisan route:clear   # Remove the route cache file
php artisan view:clear    # Clear all compiled view files

ちょっと踏み込んだキャッシュクリアコマンド

composer dump-autoload      # 参考リンク
php artisan clear-compiled  # Remove the compiled class file
php artisan optimize        # Cache the framework bootstrap files
php artisan config:cache  # Remove the configuration cache file

キーの作り直し

php artisan key:generate  # Set the application key

参考リンク

Laravel キャッシュクリア系コマンドなど – Qiita
https://qiita.com/Ping/items/10ada8d069e13d729701

Differences between “php artisan dump-autoload” and “composer dump-autoload – Lavalite
https://lavalite.org/blog/differences-between-php-artisan-dump-autoload-and-composer-dump-autoload