aklump/slim-response-cache
Composer 安装命令:
composer require aklump/slim-response-cache
包简介
Slim middleware for caching responses for subsequent requests.
README 文档
README
Summary
This project provides a means of caching responses so that subsequent requests do not pass through the route callbacks. It is helpful if the route callbacks involve expensive calculations to generate content. It is built on the HTTP Caching middleware and should be used instead of that middleware. It ships with a file-based cache storage, but supports other types of caching via \AKlump\Slim\Middleware\ContentCacheInterface.
Quick Start
$container = $app->getContainer();
$container['cache'] = function () {
return new \Slim\HttpCache\CacheProvider();
};
$container['response_cache'] = function () {
return new \AKlump\Slim\Middleware\FileCache('/path/to/cache/dir');
};
// Register this middleware.
$app->add(new \AKlump\Slim\Middleware\ContentCache($container['cache'], $container['response_cache'], 3600));
Requirements
- The response body must be able to be cast to a string.
Contributing
If you find this project useful... please consider making a donation.
Installation
-
This middleware replaces HTTP Caching therefore you should not add that middleware as shown in those instructions. Do not do the following:
$app->add(new \Slim\HttpCache\Cache('public', 86400)); -
However, you will need to register the service provider from that middleware as shown in the Quick Start above.
Advanced Usage
How do I alter the body prior to caching?
If you want to alter the response body content before it is written to cache use the fourth argument callback as shown below, which adds a last modified note
$app->add(new \AKlump\Slim\Middleware\ContentCache(
$container['cache'],
$container['response_cache'],
3600,
function (\DateTime $modified, $html_body) use ($settings) {
return $html_body . sprintf("Last modified: %s', $modified->format('r'));
}
));
How do I use a database for caching content?
You may write your own class that implements \AKlump\Slim\Middleware\ContentCacheInterface.
aklump/slim-response-cache 适用场景与选型建议
aklump/slim-response-cache 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 26 次下载、GitHub Stars 达 0, 最近一次更新时间为 2019 年 05 月 14 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 aklump/slim-response-cache 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 aklump/slim-response-cache 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 26
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 12
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2019-05-14