scrutinizer/resource-manager
Composer 安装命令:
composer require scrutinizer/resource-manager
包简介
Provides automatic, robust resource management with an easy-to-use interface
README 文档
README
This library helps you manage resources with an easy-to-use interface. Resources like temporary file, or directories are automatically clean-up when leaving the scope, background processes are stopped, and any other custom resources are destroyed.
Usage
use Scrutinizer\ResourceManager\ScopedResourceManager; class SomeClass { private $rm; public function __construct(ResourceManager $rm) { $this->rm = new FilesystemResourceManager($rm); } public function run() { $rs = $this->rm->managed(function() { $someTmpFile = $this->rm->createTemporaryFile(); // do something with $someTmpFile return $result; }); // $someTmpFile has been automatically cleaned-up here. } } $someClass = new SomeClass(new ScopedResourceManager()); $someClass->run();
Resource Manager Implementations
By default, you would want to use the ScopedResourceManager which allows arbitrary nesting of scopes.
This manager can also be wrapped by other implementations which provide some convenience methods like f.e.
the FilesystemResourceManager which allows you to easily create managed temporary files, or directories.
Background Processes
If you start a background process, like a server f.e., that you want to clean-up when leaving the scope,
you can use the resource manager's manage method:
use Scrutinizer\ResourceManager\ScopedResourceManager; use Symfony\Component\Process\Process; class SomeTest extends \PHPUnit_Framework_TestCase { private $rm; public function testSomething() { // The resource manager's global scope will automatically be cleaned up // when PHP calls all object destructors. } protected function setUp() { $this->rm = new ScopedResourceManager(); $proc = new Process('some-server-cmd'); $proc->start(); $this->rm->manage($proc); } }
Custom Resources
By default, this library supports temporary files, temporary directories, and Symfony background processes (using its Process component). You can also add create your own resources by implementing Scrutinizer\ResourceManager\Resource:
use Scrutinizer\ResourceManager\Resource; use Scrutinizer\ResourceManager\ScopedResourceManager; class PhpFileResource implements Resource { private $handle; public function __construct($fileHandle) { $this->handle = $fileHandle; } public function destroy() { fclose($this->handle); } } $rm = new ScopedResourceManager(); $rm->manage(new PhpFileResource($someHandle));
scrutinizer/resource-manager 适用场景与选型建议
scrutinizer/resource-manager 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.19k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2014 年 08 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 scrutinizer/resource-manager 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 scrutinizer/resource-manager 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 1.19k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 23
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-08-12