Laravel 10.xのartisanの「cache:clear」コマンドを解説します。
Description
アプリケーションのキャッシュ(storage/framework/cache/data/)を消去
Usage
php artisan cache:clear [--tags [TAGS]] [--] [<store>]
Arguments
引数 | 必須 | 説明 |
---|---|---|
store | - | クリアしたいストア(redis等)の名前 |
Options
オプション | 省略形 | 必須 | 説明 |
---|---|---|---|
tags | - | - | クリアしたいキャッシュタグ |
Example
no options
php artisan cache:clear
INFO Application cache cleared successfully.
コメント