定制 aklump/slim-response-cache 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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

  1. 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

  1. 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));
    
  2. 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.

统计信息

  • 总下载量: 26
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2019-05-14

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固