流明路由缓存不起作用

Lumen route caching is not working

当我在 lumen 项目中尝试 运行 php artisan route:cache 时,出现以下错误,

[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 中所有可能的命令。