Cache using psr6. 缓存使用PSR6规范.
常见实例用于缓存程序生成的json,html,xml等
使用 Composer 安装
$ composer require zfegg/page-cache-middleware
//Array cache
$cacheData = [];
$cacheItemPool = new ArrayCachePool(null, $cacheData);
$middleware = new PageCacheMiddleware(
$cacheItemPool, //PSR6 cache
function ($key, $request) { //Rename cache item key.
return md5($key);
},
60 //Page cache ttl.
);明细可参考写的 slimphp 范例

