常用的laravel缓存命令
缓存配置信息
php artisan config:cache
清除配置信息的缓存,也就是删除 bootstrap/cache/config.php 文件
php artisan config:clear
缓存路由信息
php artisan route:cache
清除缓存路由信息,也就是删除 bootstrap/cache/routes.php
php artisan route:clear
类映射加载优化
php artisan optimize
清除类映射加载优化,也就是删除 bootstrap/cache/compiled.php 和 bootstrap/cache/services.json 两个文件
php artisanclear-compiled
自动加载优化,这个命令会把 PSR-0 和 PSR-4 转换为一个类映射表来提高类的加载速度
composer dump autoload -o
生成ide helper
php artisan ide-helper:generate
为模型添加注释(链式操作的方法可以点击跟踪调用)
php artisan ide-helper:models
生成一个PhpStorm meta 文件去支持工厂模式
php artisan ide-helper:meta