LoginSignup
0
3

More than 3 years have passed since last update.

Laravel のキャッシュをやみくもに削除したいとき

Posted at

Laravel のキャッシュをとりあえず消すやりかたのメモ
(いっつも忘れるので)

php artisan clear-compiled
php artisan optimize
php artisan config:cache

composer purge-laravel-cache とかで composer 経由で叩けるようにしておくと楽ですね:

composer.json
{
    "scripts": {
        "purge-laravel-cache": [
            "php artisan clear-compiled",
            "php artisan optimize",
            "php artisan config:cache"
        ]
    }
}

config の変更が反映されてなくて、
キャッシュのせいにするときに叩き放題です。

0
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
3