php – Lumen路由缓存无法正常工作

当我试图运行php artisan route:在流明项目中缓存时,我收到以下错误,

[invalid argument exception]
There is not commend defined in the 'route' namespace.

我的路线文件是,

 $app->get('/', 'App\Http\Controllers\WebController@index');

任何的想法?

最佳答案 此命令仅存在于Laravel中,而在Lumen中则不存在.因为Lumen无论如何都要针对最佳性能进行优化,因此不需要它.

输入php artisan以查看Lumen中的所有可能命令.

点赞