webclient/ext-cache
Composer 安装命令:
composer require webclient/ext-cache
包简介
Cache extension for PSR-18 HTTP client
README 文档
README
webclient/ext-cache
Cache extension for PSR-18 HTTP client.
Install
Install this package and your favorite psr-18 implementation, psr-17 implementation and cache implementation.
composer require webclient/ext-cache:^2.0
Using
<?php use Psr\Http\Client\ClientInterface; use Psr\Http\Message\RequestInterface; use Psr\Http\Message\ResponseFactoryInterface; use Psr\Http\Message\StreamFactoryInterface; use Webclient\Cache\Contract\CacheInterface; use Webclient\Extension\Cache\Client; use Webclient\Extension\Cache\CacheKeyFactory\CacheKeyFactoryInterface; /** * @var ClientInterface $client Your PSR-18 HTTP Client * @var ResponseFactoryInterface $responseFactory Your PSR-17 response factory * @var StreamFactoryInterface $streamFactory Your PSR-17 stream factory * @var CacheInterface $cache Your cache adapter * @var CacheKeyFactoryInterface|null $cacheKeyFactory key factory for your cache */ $http = new CacheClientDecorator( $client, $responseFactory, $streamFactory, $cache, $cacheKeyFactory, 'X-Private-Cache-Key-Header', // name of the header in which the private cache key is contained 4096, // Maximal response size (with header). null for unlimited. 2147483648 // maximal TTL of cache items ); /** @var RequestInterface $request */ $response = $http->sendRequest($request); /** @var RequestInterface $request */ $response = $http->sendRequest($request); /** * For using private cache add header `X-Private-Cache-Key-Header` (or your configured) to request. * header `X-Private-Cache-Key-Header` (or your configured) do not be sent to original http-client. */ $response = $http->sendRequest($request->withHeader('X-Private-Cache-Key-Header', ['private-key-for-current-user']));
Not handled requests
If the request contains If-None-Match, If-Match, If-Modified-Since, If-Unmodified-Since, or If-Range headers,
then the response will be returned as is.
Partial Requests
Partial requests not supports.
webclient/ext-cache 适用场景与选型建议
webclient/ext-cache 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.52k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2020 年 06 月 30 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「http」 「cache」 「client」 「http-client」 「http-client-extension」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 webclient/ext-cache 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 webclient/ext-cache 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 webclient/ext-cache 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
repository php library
Laravel 5 - Repositories to the database layer
Mock PSR-18 HTTP client
Asynchronous MQTT client built on React
http客户端
Easily add Excepct-CT header to your project
统计信息
- 总下载量: 1.52k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 8
- 依赖项目数: 0
- 推荐数: 1
其他信息
- 授权协议: MIT
- 更新时间: 2020-06-30