helingfeng / laravel-page-cache
此包最新版本(1.0.5)没有提供许可证信息。
1.0.5
2019-05-23 09:49 UTC
Requires
- jenssegers/agent: ^2.6
This package is not auto-updated.
Last update: 2024-09-21 10:25:56 UTC
README
页面静态文件缓存,加速网站访问速度
安装
使用 Composer 安装
composer require helingfeng/laravel-page-cache 1.0.5 php artisan vendor:publish
路由文件中使用
在需要缓存的路由中添加page_cache中间件
Route::group(['middleware' => ['page_cache']], function($router){ $router->get('page-demo', function () { return '<h2>this page is cached.</h2>'; }); });