ofbeaton/command-running
Composer 安装命令:
composer require ofbeaton/command-running
包简介
Detects if a command or process is currently running.
README 文档
README
Detects if a command or process is currently running and optionally kill it.
Currently supports:
- Linux
- Windows
Please note that getPids() on windows is slow (2 seconds). There may be a way to speed it up using WMI in the future.
Alternatives
If you don't need advanced features, you can use the Symfony Lock component and trait in any application, even non-symfony ones. It is actively maintained and is likely more up to date.
It supports filesystem (FlockStore), shared memory (SemaphoreStore) and even databases and Redis servers.
It does not support force claims, kills, or reports.
Updates
The project is considered in a usable state and feature complete.
This project is used in corporate applications. As such, the authors are unlikely to update it on a regular basis, but instead when the corporate applications that use it run into problems. You should expect updates in the 5-10yr range.
Issues and PRs will be monitored, and we will continue to work with the community to provide updates as they are contributed.
Installing via Composer
The recommended way to install Command Running is through Composer.
# Install Composer curl -sS https://getcomposer.org/installer | php
Next, run the Composer command to install the latest stable version:
composer.phar require ofbeaton/command-running
After installing, you can now use it in your code:
$pidfile = 'mypidfile.txt'; $running = new \Ofbeaton\Command\Running($pidfile); $ok = $running->claimPidFile(); if ($ok === false) { echo 'We are currently already running'.PHP_EOL; exit; } // your code // at the end of your program $running->releasePidFile();
For more detailed usage, see the Forever Example.
License
This software is distributed under the MIT License. Please see License file for more information.
ofbeaton/command-running 适用场景与选型建议
ofbeaton/command-running 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 207 次下载、GitHub Stars 达 2, 最近一次更新时间为 2015 年 08 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「console」 「command」 「pid」 「kill」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 ofbeaton/command-running 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 ofbeaton/command-running 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 ofbeaton/command-running 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
This class provides you with an easy-to-use interface to progress bars.
A Wrapper for exec and it's results
Symfony bundle to monitor and execute commands
A Laravel package to retrieve data from Google Search Console
Additional artisan commands for Laravel
A small helper class used to help you check if code is still running
统计信息
- 总下载量: 207
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 19
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-08-12