定制 flowwe/mtman 二次开发

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

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

flowwe/mtman

最新稳定版本:v1.0.0

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.

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: Unknown
  • 更新时间: 2025-02-12