flowwe/mtman
Composer 安装命令:
composer require flowwe/mtman
包简介
MultiThreading Manager for PHP 8.3
README 文档
README
A Multithreading Solution for PHP
Overview
MTMan is a production-ready multithreading management library for PHP 8.3+ that provides true parallel execution capabilities through native process management. It offers enterprise-grade features including automatic resource cleanup, configurable retry mechanisms, and comprehensive logging.
Key Advantages
True Multithreading (vs ReactPHP)
While ReactPHP uses an event loop for asynchronous operations, MTMan provides actual parallel execution
Simplified Architecture (vs Swoole)
Unlike Swoole's complex C-level implementation, MTMan provides a pure PHP solution
Enhanced Versatility (vs Guzzle)
While Guzzle focuses on HTTP requests, MTMan handles any parallel processing need
Production-Ready Features (vs Spatie Ray)
Unlike development tools like Spatie Ray, MTMan is built for production use
Technical Specifications
Thread Management
- OS-level process isolation through PCNTL
- Configurable thread limits
- Automatic thread cleanup
- Process status monitoring
Requirements
PHP 8.3+ PCNTL extension Optional: SMBus for enhanced IPC
Basic Usage
use MTMan\MTMan; $mtman = new MTMan(['threads_count' => 4]); // Add parallel tasks $mtman->addTask(function() { return processDataSet1(); }); $mtman->addTask(function() { return processDataSet2(); }); // Execute and get results $results = $mtman->run();
Advanced Configuration
$config = [ 'threads_count' => 4, 'time_limit' => 60, 'log_level' => 'DEBUG', 'max_retries' => 3, 'temp_dir' => '/var/mtman/temp' ]; $mtman = new MTMan($config);
Monitoring
// Get thread status $status = $mtman->getThreadStatus(); // Sample log output { "timestamp": "2024-02-11T15:30:00", "process_id": 12345, "thread_id": 2, "status": "completed", "execution_time": 1.23, "memory_peak": "2.5MB" }
Check example dir content from browser
...to get fancy-handy informations about the current processes
If look like everything is working from browser, but the output is null
Your server forbid PCNTL functions in FPM mode. Check the example directory for solution to calling MTMan in CLI mode.
License
MIT License - see LICENSE file for details.
Contributing
See CONTRIBUTING.md for contribution guidelines.
flowwe/mtman 适用场景与选型建议
flowwe/mtman 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 16 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 02 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 flowwe/mtman 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 flowwe/mtman 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 16
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 21
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2025-02-12