tourze / workerman-core-dump-cleaner
CoreDump文件清理
0.0.1
2025-03-24 03:33 UTC
Requires
- php: ^8.1
- workerman/crontab: ^1.0.7
- workerman/workerman: ^5.1
This package is auto-updated.
Last update: 2025-03-29 10:40:35 UTC
README
A simple package to automatically clean up core dump files in Workerman applications.
Features
- Automatically cleans up core dump files (
core
,core.1
,core.2
, etc.) - Configurable cleanup schedule using cron expression
- Simple integration with Workerman applications
- Monitors up to 20 core dump files (core to core.19)
Requirements
- PHP >= 8.1
- Workerman >= 5.1
- Workerman/Crontab >= 1.0.7
Installation
composer require tourze/workerman-core-dump-cleaner
Quick Start
<?php use Tourze\Workerman\CoreDumpCleaner\CoreDumpCleaner; // Initialize with project directory and optional cron schedule // Default schedule is every 30 seconds new CoreDumpCleaner('/path/to/project', '*/30 * * * * *');
Configuration
The constructor accepts two parameters:
$projectDir
(string): The directory where core dump files are located$rule
(string): Cron expression for cleanup schedule (default:*/30 * * * * *
)
Contributing
Please feel free to submit pull requests or open issues to improve this package.
License
The MIT License (MIT). Please see License File for more information.